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

Unified Diff: chrome/browser/extensions/api/debugger/debugger_api.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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: chrome/browser/extensions/api/debugger/debugger_api.cc
diff --git a/chrome/browser/extensions/api/debugger/debugger_api.cc b/chrome/browser/extensions/api/debugger/debugger_api.cc
index 8b2b40ce63da084ccdba0c0cb8156336cef40edb..bd1489e53b61b36d1fe1a2142019edf5cc95308b 100644
--- a/chrome/browser/extensions/api/debugger/debugger_api.cc
+++ b/chrome/browser/extensions/api/debugger/debugger_api.cc
@@ -99,10 +99,10 @@ class ExtensionDevToolsClientHost : public content::DevToolsAgentHostClient,
// DevToolsAgentHostClient interface.
virtual void AgentHostClosed(
DevToolsAgentHost* agent_host,
- bool replaced_with_another_client) OVERRIDE;
+ bool replaced_with_another_client) override;
virtual void DispatchProtocolMessage(
DevToolsAgentHost* agent_host,
- const std::string& message) OVERRIDE;
+ const std::string& message) override;
private:
void SendDetachedEvent();
@@ -110,13 +110,13 @@ class ExtensionDevToolsClientHost : public content::DevToolsAgentHostClient,
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// ExtensionRegistryObserver implementation.
virtual void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const Extension* extension,
- UnloadedExtensionInfo::Reason reason) OVERRIDE;
+ UnloadedExtensionInfo::Reason reason) override;
Profile* profile_;
scoped_refptr<DevToolsAgentHost> agent_host_;
@@ -174,13 +174,13 @@ class ExtensionDevToolsInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual ~ExtensionDevToolsInfoBarDelegate();
// ConfirmInfoBarDelegate:
- virtual void InfoBarDismissed() OVERRIDE;
- virtual Type GetInfoBarType() const OVERRIDE;
+ virtual void InfoBarDismissed() override;
+ virtual Type GetInfoBarType() const override;
virtual bool ShouldExpireInternal(
- const NavigationDetails& details) const OVERRIDE;
- virtual base::string16 GetMessageText() const OVERRIDE;
- virtual int GetButtons() const OVERRIDE;
- virtual bool Cancel() OVERRIDE;
+ const NavigationDetails& details) const override;
+ virtual base::string16 GetMessageText() const override;
+ virtual int GetButtons() const override;
+ virtual bool Cancel() override;
std::string client_name_;
ExtensionDevToolsClientHost* client_host_;
« no previous file with comments | « chrome/browser/extensions/api/debugger/debugger_api.h ('k') | chrome/browser/extensions/api/debugger/debugger_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698