| Index: webkit/glue/webdevtoolsagent_impl.h
|
| ===================================================================
|
| --- webkit/glue/webdevtoolsagent_impl.h (revision 30797)
|
| +++ webkit/glue/webdevtoolsagent_impl.h (working copy)
|
| @@ -10,7 +10,7 @@
|
| #include <wtf/OwnPtr.h>
|
|
|
| #include "v8.h"
|
| -#include "webkit/api/public/WebDevToolsAgent.h"
|
| +#include "webkit/api/src/WebDevToolsAgentPrivate.h"
|
| #include "webkit/glue/devtools/devtools_rpc.h"
|
| #include "webkit/glue/devtools/apu_agent_delegate.h"
|
| #include "webkit/glue/devtools/tools_agent.h"
|
| @@ -35,7 +35,7 @@
|
| class DebuggerAgentImpl;
|
| class Value;
|
|
|
| -class WebDevToolsAgentImpl : public WebKit::WebDevToolsAgent,
|
| +class WebDevToolsAgentImpl : public WebKit::WebDevToolsAgentPrivate,
|
| public ToolsAgent,
|
| public DevToolsRpc::Delegate {
|
| public:
|
| @@ -57,6 +57,11 @@
|
| int call_id,
|
| int identifier);
|
|
|
| + // WebDevToolsAgentPrivate implementation.
|
| + virtual void didClearWindowObject(WebKit::WebFrameImpl* frame);
|
| + virtual void didCommitProvisionalLoad(
|
| + WebKit::WebFrameImpl* frame, bool is_new_navigation);
|
| +
|
| // WebDevToolsAgent implementation.
|
| virtual void attach();
|
| virtual void detach();
|
| @@ -78,14 +83,6 @@
|
| const WebCore::String& param2,
|
| const WebCore::String& param3);
|
|
|
| - // Methods called by the glue.
|
| - void SetMainFrameDocumentReady(bool ready);
|
| - void DidCommitLoadForFrame(WebKit::WebViewImpl* webview,
|
| - WebKit::WebFrame* frame,
|
| - bool is_new_navigation);
|
| -
|
| - void WindowObjectCleared(WebKit::WebFrameImpl* webframe);
|
| -
|
| void ForceRepaint();
|
|
|
| int host_id() { return host_id_; }
|
|
|