diff options
Diffstat (limited to 'webkit/glue/webdevtoolsclient_impl.h')
-rw-r--r-- | webkit/glue/webdevtoolsclient_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/webdevtoolsclient_impl.h b/webkit/glue/webdevtoolsclient_impl.h index f05cad6..b2877a9 100644 --- a/webkit/glue/webdevtoolsclient_impl.h +++ b/webkit/glue/webdevtoolsclient_impl.h @@ -40,12 +40,15 @@ class WebDevToolsClientImpl : public WebDevToolsClient, private: void JsAddSourceToFrame(const CppArgumentList& args, CppVariant* result); + void JsLoaded(const CppArgumentList& args, CppVariant* result); WebViewImpl* web_view_impl_; WebDevToolsClientDelegate* delegate_; OwnPtr<JsDomAgentBoundObj> dom_agent_obj_; OwnPtr<JsNetAgentBoundObj> net_agent_obj_; OwnPtr<JsToolsAgentBoundObj> tools_agent_obj_; + bool loaded_; + Vector<std::string> pending_incoming_messages_; DISALLOW_COPY_AND_ASSIGN(WebDevToolsClientImpl); }; |