| Index: chrome/browser/ui/webui/inspect_ui.cc
|
| diff --git a/chrome/browser/ui/webui/inspect_ui.cc b/chrome/browser/ui/webui/inspect_ui.cc
|
| index e9d550f8cebed0ef481eb68a1493a267eb743f19..7ff0ffb4d179183495c18abb89eabaf0f6a59692 100644
|
| --- a/chrome/browser/ui/webui/inspect_ui.cc
|
| +++ b/chrome/browser/ui/webui/inspect_ui.cc
|
| @@ -58,11 +58,11 @@ class InspectMessageHandler : public WebUIMessageHandler {
|
| public:
|
| explicit InspectMessageHandler(InspectUI* inspect_ui)
|
| : inspect_ui_(inspect_ui) {}
|
| - virtual ~InspectMessageHandler() {}
|
| + ~InspectMessageHandler() override {}
|
|
|
| private:
|
| // WebUIMessageHandler implementation.
|
| - virtual void RegisterMessages() override;
|
| + void RegisterMessages() override;
|
|
|
| void HandleInitUICommand(const base::ListValue* args);
|
| void HandleInspectCommand(const base::ListValue* args);
|
| @@ -206,14 +206,14 @@ class DevToolsUIBindingsEnabler
|
| public:
|
| DevToolsUIBindingsEnabler(WebContents* web_contents,
|
| const GURL& url);
|
| - virtual ~DevToolsUIBindingsEnabler() {}
|
| + ~DevToolsUIBindingsEnabler() override {}
|
|
|
| DevToolsUIBindings* GetBindings();
|
|
|
| private:
|
| // contents::WebContentsObserver overrides.
|
| - virtual void WebContentsDestroyed() override;
|
| - virtual void AboutToNavigateRenderView(
|
| + void WebContentsDestroyed() override;
|
| + void AboutToNavigateRenderView(
|
| content::RenderViewHost* render_view_host) override;
|
|
|
| DevToolsUIBindings bindings_;
|
|
|