Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Unified Diff: content/browser/debugger/devtools_manager_impl.h

Issue 10065017: TabContents -> WebContentsImpl, part 8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/debugger/devtools_manager_impl.h
diff --git a/content/browser/debugger/devtools_manager_impl.h b/content/browser/debugger/devtools_manager_impl.h
index b78d352c0eaec521d5a156ca33b365de8e81afa2..4b60619f04b1f44aa80516a3d527ced9b12797c6 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.
« no previous file with comments | « content/browser/debugger/devtools_http_handler_impl.cc ('k') | content/browser/debugger/devtools_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698