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. |