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

Unified Diff: content/public/browser/devtools_client_host.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/public/browser/devtools_client_host.h
diff --git a/content/public/browser/devtools_client_host.h b/content/public/browser/devtools_client_host.h
index 19ca75a6add6a0bcb3019da828321e2a269631dd..76a8ba47fc7ea3e53318da4e083cd82e4dc22b18 100644
--- a/content/public/browser/devtools_client_host.h
+++ b/content/public/browser/devtools_client_host.h
@@ -32,17 +32,16 @@ class CONTENT_EXPORT DevToolsClientHost {
// Dispatches given message on the front-end.
virtual void DispatchOnInspectorFrontend(const std::string& message) = 0;
- // This method is called when tab inspected by this devtools client is
- // closing.
- virtual void InspectedTabClosing() = 0;
+ // This method is called when the contents inspected by this devtools client
+ // is closing.
+ virtual void InspectedContentsClosing() = 0;
- // This method is called when tab inspected by this devtools client is
- // navigating to |url|.
+ // This method is called when the contents inspected by this devtools client
+ // is navigating to |url|.
virtual void FrameNavigating(const std::string& url) = 0;
- // Invoked when a tab is replaced by another tab. This is triggered by
- // TabStripModel::ReplaceTabContentsAt.
- virtual void TabReplaced(WebContents* new_tab) = 0;
+ // Invoked when the contents are replaced by another contents.
+ virtual void ContentsReplaced(WebContents* new_contents) = 0;
// Creates DevToolsClientHost for TabContents containing default DevTools
// frontend implementation.
« no previous file with comments | « content/browser/debugger/render_view_devtools_agent_host.cc ('k') | content/public/browser/devtools_frontend_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698