diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-25 21:37:09 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-25 21:37:09 +0000 |
commit | ea049a01f82647dc12e4001c8be03e4124faaff3 (patch) | |
tree | 0bb59450d13be2f37e404cfd2374ea27fba7461f /content/public/browser/devtools_agent_host_registry.h | |
parent | 5ca3ddf71cb1db27e206c4d048770ad21e5688c9 (diff) | |
download | chromium_src-ea049a01f82647dc12e4001c8be03e4124faaff3.zip chromium_src-ea049a01f82647dc12e4001c8be03e4124faaff3.tar.gz chromium_src-ea049a01f82647dc12e4001c8be03e4124faaff3.tar.bz2 |
Convert a bunch of WebContentsObservers to use web_contents() instead of tab_contents(), as well as all the dependent code.
BUG=98716
TBR=joi
Review URL: http://codereview.chromium.org/8982008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115777 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/devtools_agent_host_registry.h')
-rw-r--r-- | content/public/browser/devtools_agent_host_registry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/public/browser/devtools_agent_host_registry.h b/content/public/browser/devtools_agent_host_registry.h index 567d32e..1d1e2c2 100644 --- a/content/public/browser/devtools_agent_host_registry.h +++ b/content/public/browser/devtools_agent_host_registry.h @@ -9,11 +9,11 @@ #include "content/common/content_export.h" class RenderViewHost; -class TabContents; namespace content { class DevToolsAgentHost; +class WebContents; class CONTENT_EXPORT DevToolsAgentHostRegistry { public: @@ -31,7 +31,7 @@ class CONTENT_EXPORT DevToolsAgentHostRegistry { int worker_process_id, int worker_route_id); - static bool IsDebuggerAttached(TabContents* tab_contents); + static bool IsDebuggerAttached(WebContents* web_contents); }; } // namespace content |