| Index: chrome/browser/devtools/devtools_target_impl.h
|
| diff --git a/chrome/browser/devtools/devtools_target_impl.h b/chrome/browser/devtools/devtools_target_impl.h
|
| index 2b8d1b6e329f66807fd2e734af93a11cc9eb7064..3ce031ba725a5406de27efcfa14e610fadaf8e8b 100644
|
| --- a/chrome/browser/devtools/devtools_target_impl.h
|
| +++ b/chrome/browser/devtools/devtools_target_impl.h
|
| @@ -35,19 +35,19 @@ class DevToolsTargetImpl : public content::DevToolsTarget {
|
| virtual ~DevToolsTargetImpl();
|
|
|
| // content::DevToolsTarget overrides:
|
| - virtual std::string GetId() const OVERRIDE;
|
| - virtual std::string GetParentId() const OVERRIDE;
|
| - virtual std::string GetType() const OVERRIDE;
|
| - virtual std::string GetTitle() const OVERRIDE;
|
| - virtual std::string GetDescription() const OVERRIDE;
|
| - virtual GURL GetURL() const OVERRIDE;
|
| - virtual GURL GetFaviconURL() const OVERRIDE;
|
| - virtual base::TimeTicks GetLastActivityTime() const OVERRIDE;
|
| + virtual std::string GetId() const override;
|
| + virtual std::string GetParentId() const override;
|
| + virtual std::string GetType() const override;
|
| + virtual std::string GetTitle() const override;
|
| + virtual std::string GetDescription() const override;
|
| + virtual GURL GetURL() const override;
|
| + virtual GURL GetFaviconURL() const override;
|
| + virtual base::TimeTicks GetLastActivityTime() const override;
|
| virtual scoped_refptr<content::DevToolsAgentHost>
|
| - GetAgentHost() const OVERRIDE;
|
| - virtual bool IsAttached() const OVERRIDE;
|
| - virtual bool Activate() const OVERRIDE;
|
| - virtual bool Close() const OVERRIDE;
|
| + GetAgentHost() const override;
|
| + virtual bool IsAttached() const override;
|
| + virtual bool Activate() const override;
|
| + virtual bool Close() const override;
|
|
|
| // Returns the WebContents associated with the target on NULL if there is
|
| // not any.
|
|
|