diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 12:36:21 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 12:36:21 +0000 |
commit | 2573a236ea484dd5c07a6871470475a0681722b3 (patch) | |
tree | 7c6cb20775086ec74c197b014c0f33f08fd214c8 /webkit/glue/webdevtoolsagent_impl.h | |
parent | 87b603ad919c43e94758d36fd0ba0d3eca2382d5 (diff) | |
download | chromium_src-2573a236ea484dd5c07a6871470475a0681722b3.zip chromium_src-2573a236ea484dd5c07a6871470475a0681722b3.tar.gz chromium_src-2573a236ea484dd5c07a6871470475a0681722b3.tar.bz2 |
DevTools: add support for navigating to other tab while inspecting.
Review URL: http://codereview.chromium.org/53098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webdevtoolsagent_impl.h')
-rw-r--r-- | webkit/glue/webdevtoolsagent_impl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/glue/webdevtoolsagent_impl.h b/webkit/glue/webdevtoolsagent_impl.h index 500299b..15df64c 100644 --- a/webkit/glue/webdevtoolsagent_impl.h +++ b/webkit/glue/webdevtoolsagent_impl.h @@ -40,12 +40,13 @@ class WebDevToolsAgentImpl virtual ~WebDevToolsAgentImpl(); // ToolsAgent implementation. - virtual void SetEnabled(bool enabled); virtual void HighlightDOMNode(int node_id); virtual void HideDOMNodeHighlight(); virtual void EvaluateJavaSctipt(int call_id, const String& js); // WebDevToolsAgent implementation. + virtual void Attach(); + virtual void Detach(); virtual void DispatchMessageFromClient(const std::string& raw_msg); virtual void InspectElement(int x, int y); @@ -71,7 +72,7 @@ class WebDevToolsAgentImpl scoped_ptr<DebuggerAgentImpl> debugger_agent_impl_; scoped_ptr<DomAgentImpl> dom_agent_impl_; scoped_ptr<NetAgentImpl> net_agent_impl_; - bool enabled_; + bool attached_; DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl); }; |