summaryrefslogtreecommitdiffstats
path: root/content/browser/debugger/devtools_manager_impl.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-13 15:48:09 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-13 15:48:09 +0000
commita0262433028ad421a7bc4cec99354e58069de872 (patch)
tree8df39b9a04a398be513d3a837e1cecd385cf996f /content/browser/debugger/devtools_manager_impl.h
parente550214a7d080f514dfeef7e2851345aa6a76669 (diff)
downloadchromium_src-a0262433028ad421a7bc4cec99354e58069de872.zip
chromium_src-a0262433028ad421a7bc4cec99354e58069de872.tar.gz
chromium_src-a0262433028ad421a7bc4cec99354e58069de872.tar.bz2
TabContents -> WebContentsImpl, part 8.
"Detab" content/browser/debugger. BUG=105875 TEST=no change Review URL: http://codereview.chromium.org/10065017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132193 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/debugger/devtools_manager_impl.h')
-rw-r--r--content/browser/debugger/devtools_manager_impl.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/browser/debugger/devtools_manager_impl.h b/content/browser/debugger/devtools_manager_impl.h
index b78d352..4b60619 100644
--- a/content/browser/debugger/devtools_manager_impl.h
+++ b/content/browser/debugger/devtools_manager_impl.h
@@ -61,7 +61,8 @@ class CONTENT_EXPORT DevToolsManagerImpl
// DevToolsManager implementation
virtual bool DispatchOnInspectorBackend(DevToolsClientHost* from,
const std::string& message) OVERRIDE;
- virtual void TabReplaced(WebContents* old_tab, WebContents* new_tab) OVERRIDE;
+ virtual void ContentsReplaced(WebContents* old_contents,
+ WebContents* new_contents) OVERRIDE;
virtual void CloseAllClientHosts() OVERRIDE;
virtual void AttachClientHost(int client_host_cookie,
DevToolsAgentHost* to_agent) OVERRIDE;
@@ -101,9 +102,9 @@ class CONTENT_EXPORT DevToolsManagerImpl
void AttachClientHost(int client_host_cookie,
RenderViewHost* to_rvh);
- // These two maps are for tracking dependencies between inspected tabs and
+ // These two maps are for tracking dependencies between inspected contents and
// their DevToolsClientHosts. They are useful for routing devtools messages
- // and allow us to have at most one devtools client host per tab.
+ // and allow us to have at most one devtools client host per contents.
//
// DevToolsManagerImpl starts listening to DevToolsClientHosts when they are
// put into these maps and removes them when they are closing.