| Index: content/browser/debugger/devtools_frontend_host.h
|
| diff --git a/content/browser/debugger/devtools_frontend_host.h b/content/browser/debugger/devtools_frontend_host.h
|
| index d60b093a6dbfce38203a8b51ce6b17bc21635796..0845e2356e2f70c8d3532957ae0a3f6e219b3263 100644
|
| --- a/content/browser/debugger/devtools_frontend_host.h
|
| +++ b/content/browser/debugger/devtools_frontend_host.h
|
| @@ -33,9 +33,9 @@ class DevToolsFrontendHost : public DevToolsClientHost,
|
|
|
| // DevToolsFrontendHost implementation.
|
| virtual void DispatchOnInspectorFrontend(const std::string& message) OVERRIDE;
|
| - virtual void InspectedTabClosing() OVERRIDE;
|
| + virtual void InspectedContentsClosing() OVERRIDE;
|
| virtual void FrameNavigating(const std::string& url) OVERRIDE;
|
| - virtual void TabReplaced(WebContents* new_tab) OVERRIDE;
|
| + virtual void ContentsReplaced(WebContents* new_contents) OVERRIDE;
|
|
|
| // content::RenderViewHostObserver overrides.
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| @@ -52,7 +52,7 @@ class DevToolsFrontendHost : public DevToolsClientHost,
|
| const std::string& content,
|
| bool save_as);
|
|
|
| - WebContentsImpl* tab_contents_;
|
| + WebContentsImpl* web_contents_;
|
| DevToolsFrontendHostDelegate* delegate_;
|
| DISALLOW_COPY_AND_ASSIGN(DevToolsFrontendHost);
|
| };
|
|
|