Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: chromecast/shell/browser/devtools/cast_dev_tools_delegate.h

Issue 630663003: replace OVERRIDE and FINAL with override and final in chromecast/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromecast/shell/browser/devtools/cast_dev_tools_delegate.h
diff --git a/chromecast/shell/browser/devtools/cast_dev_tools_delegate.h b/chromecast/shell/browser/devtools/cast_dev_tools_delegate.h
index c1801591056f7da3d4dc9218d46e9cd02af1d77e..98c45dbc46f313f3e4406bc7f078a4e7719c370a 100644
--- a/chromecast/shell/browser/devtools/cast_dev_tools_delegate.h
+++ b/chromecast/shell/browser/devtools/cast_dev_tools_delegate.h
@@ -26,12 +26,12 @@ class CastDevToolsDelegate : public content::DevToolsHttpHandlerDelegate {
virtual ~CastDevToolsDelegate();
// DevToolsHttpHandlerDelegate implementation.
- virtual std::string GetDiscoveryPageHTML() OVERRIDE;
- virtual bool BundlesFrontendResources() OVERRIDE;
- virtual base::FilePath GetDebugFrontendDir() OVERRIDE;
+ virtual std::string GetDiscoveryPageHTML() override;
+ virtual bool BundlesFrontendResources() override;
+ virtual base::FilePath GetDebugFrontendDir() override;
virtual scoped_ptr<net::StreamListenSocket> CreateSocketForTethering(
net::StreamListenSocket::Delegate* delegate,
- std::string* name) OVERRIDE;
+ std::string* name) override;
private:
DISALLOW_COPY_AND_ASSIGN(CastDevToolsDelegate);
@@ -45,17 +45,17 @@ class CastDevToolsManagerDelegate : public content::DevToolsManagerDelegate {
// DevToolsManagerDelegate implementation.
virtual void Inspect(
content::BrowserContext* browser_context,
- content::DevToolsAgentHost* agent_host) OVERRIDE {}
+ content::DevToolsAgentHost* agent_host) override {}
virtual void DevToolsAgentStateChanged(
content::DevToolsAgentHost* agent_host,
- bool attached) OVERRIDE {}
+ bool attached) override {}
virtual base::DictionaryValue* HandleCommand(
content::DevToolsAgentHost* agent_host,
- base::DictionaryValue* command) OVERRIDE;
+ base::DictionaryValue* command) override;
virtual scoped_ptr<content::DevToolsTarget> CreateNewTarget(
- const GURL& url) OVERRIDE;
- virtual void EnumerateTargets(TargetCallback callback) OVERRIDE;
- virtual std::string GetPageThumbnailData(const GURL& url) OVERRIDE;
+ const GURL& url) override;
+ virtual void EnumerateTargets(TargetCallback callback) override;
+ virtual std::string GetPageThumbnailData(const GURL& url) override;
private:
DISALLOW_COPY_AND_ASSIGN(CastDevToolsManagerDelegate);
« no previous file with comments | « chromecast/shell/browser/cast_network_delegate_simple.cc ('k') | chromecast/shell/browser/devtools/cast_dev_tools_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698