|
WIP
WIP term explained
IntroductionWIP is a codename WebKit Remote Debugging Protocol Java implementation. This is the main Google Chrome/Chromium debug protocol and historically it succeeds ChromeDevToolsProtocol. It is natively used by in-browser Developer Tools. WIP stands for "WebInspector Protocol" and is used within "Google Chrome Developer Tools for Java" project only, mostly for historical reasons. The development process earned a dedicated article. How to start Google Chrome/Chromiumchrome --remote-debugging-port=<port> How to attach from DebuggerA launch configuration named "WebKit Protocol" should be created (see tutorial). How to attach from SDKUse the following create method: org.chromium.sdk.wip.WipBrowserFactory.INSTANCE.createBrowser(...) WIP BackendsNote that the project contains several alternative protocol implementations for the different versions. They are deployed as "WIP Backends" (see main article). Protocol NameProtocol is called 'WebKit Remote Debuggin Protocol'. You can be sure that you are using this protocol, if you are starting Google Chrome/Chromium with the following parameter: --remote-debugging-port=<port> Compare with ChromeDevTools Protocol. WebKit Remote Debugging ProtocolSee http://code.google.com/chrome/devtools/docs/remote-debugging.html. Blog posts:
|