| Index: chrome/browser/devtools/devtools_target_impl.cc
|
| diff --git a/chrome/browser/devtools/devtools_target_impl.cc b/chrome/browser/devtools/devtools_target_impl.cc
|
| index 3ba5a7db59d678dd91192872db064d5e11d45711..08c08c32a8f4da21c9a2f7b1acdb315de7aed107 100644
|
| --- a/chrome/browser/devtools/devtools_target_impl.cc
|
| +++ b/chrome/browser/devtools/devtools_target_impl.cc
|
| @@ -49,10 +49,10 @@ class WebContentsTarget : public DevToolsTargetImpl {
|
| WebContentsTarget(WebContents* web_contents, bool is_tab);
|
|
|
| // DevToolsTargetImpl overrides:
|
| - virtual WebContents* GetWebContents() const OVERRIDE;
|
| - virtual int GetTabId() const OVERRIDE;
|
| - virtual std::string GetExtensionId() const OVERRIDE;
|
| - virtual void Inspect(Profile* profile) const OVERRIDE;
|
| + virtual WebContents* GetWebContents() const override;
|
| + virtual int GetTabId() const override;
|
| + virtual std::string GetExtensionId() const override;
|
| + virtual void Inspect(Profile* profile) const override;
|
|
|
| private:
|
| int tab_id_;
|
| @@ -153,7 +153,7 @@ class WorkerTarget : public DevToolsTargetImpl {
|
| explicit WorkerTarget(scoped_refptr<DevToolsAgentHost> agent_host);
|
|
|
| // DevToolsTargetImpl overrides:
|
| - virtual void Inspect(Profile* profile) const OVERRIDE;
|
| + virtual void Inspect(Profile* profile) const override;
|
| };
|
|
|
| WorkerTarget::WorkerTarget(scoped_refptr<DevToolsAgentHost> agent_host)
|
|
|