| Index: content/public/browser/devtools_manager.h
|
| diff --git a/content/public/browser/devtools_manager.h b/content/public/browser/devtools_manager.h
|
| index f6029ce502482d940fb175d4953a240fce0fc921..5311c3e42cd5181c13757cb64f2f6308ccd5053e 100644
|
| --- a/content/public/browser/devtools_manager.h
|
| +++ b/content/public/browser/devtools_manager.h
|
| @@ -34,9 +34,10 @@ class CONTENT_EXPORT DevToolsManager {
|
| virtual bool DispatchOnInspectorBackend(DevToolsClientHost* from,
|
| const std::string& message) = 0;
|
|
|
| - // Invoked when a tab is replaced by another tab. This is triggered by
|
| + // Invoked when contents is replaced by another contents. This is triggered by
|
| // TabStripModel::ReplaceTabContentsAt.
|
| - virtual void TabReplaced(WebContents* old_tab, WebContents* new_tab) = 0;
|
| + virtual void ContentsReplaced(WebContents* old_contents,
|
| + WebContents* new_contents) = 0;
|
|
|
| // Closes all open developer tools windows.
|
| virtual void CloseAllClientHosts() = 0;
|
|
|