Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » Failed to unregister class Chrome_WidgetWin_0. Error = 0(ERROR:window_impl.cc(114)] Failed to unregister class Chrome_WidgetWin_0. Error = 0)
Failed to unregister class Chrome_WidgetWin_0. Error = 0 [message #1854968] Wed, 21 September 2022 03:05
Martin J is currently offline Martin JFriend
Messages: 50
Registered: August 2015
Member
After creating Edge browser, I get the following log message, when I exit SWT program;

[0918/093752.162:ERROR:window_impl.cc(114)] Failed to unregister class Chrome_WidgetWin_0. Error = 0

I created edge browser as follows. It doesn't do any other thing when I tested. This looks benign message. But bothers me. Note that bug report is disabled. So I am posting here;

Shell shell = new Shell(SWT.NONE);
Browser b = null;
String btype = null;
try { // Check Edge browser
b = new Browser(shell, SWT.EDGE);
btype = b.getBrowserType();
} catch (Throwable t1) {
t1.printStackTrace();
}
if (b!=null) {
b.dispose();
b = null;
}
shell.dispose();
Previous Topic:SWT widgets take no command under asynchronous http request callback
Next Topic:KeyEvents are not triggered for Browser SWT.EDGE
Goto Forum:
  


Current Time: Tue May 07 03:59:28 GMT 2024

Powered by FUDForum. Page generated in 5.02725 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top