You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 6, 2020. It is now read-only.
I try to add debug support for chrome application.
When I write code in eclipse I don't have any error during compilation. In
runtime I got en following error:
!STACK 0
java.lang.NoClassDefFoundError: org/chromium/sdk/wip/WipBackendFactory
-2.WipBrowser browser = WipBrowserFactory.INSTANCE.createBrowser(new
-1.InetSocketAddress("localhost", port), new EmptyLoggerFactory());
0.
1. WipBackendFactory factory = new WipBackendFactory();
2. WipBackend backend = factory.create();
3. try
4. {
5. browser.getTabs(backend);
6. }
7. catch (IOException e)
8. {
9. e.printStackTrace();
10.}
So I have an error in line 1. what is the problem?
Original issue reported on code.google.com by yu.pitom...@gmail.com on 19 Aug 2013 at 9:40