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

Unified Diff: chrome/browser/shell_integration.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/shell_integration.h
diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h
index 6844451df2d359d4fd545c352934eec44ebf3d58..49060c1637b7647f60eedfa50c7130fc55a34294 100644
--- a/chrome/browser/shell_integration.h
+++ b/chrome/browser/shell_integration.h
@@ -278,10 +278,10 @@ class ShellIntegration {
virtual ~DefaultBrowserWorker() {}
// Check if Chrome is the default browser.
- virtual DefaultWebClientState CheckIsDefault() OVERRIDE;
+ virtual DefaultWebClientState CheckIsDefault() override;
// Set Chrome as the default browser.
- virtual bool SetAsDefault(bool interactive_permitted) OVERRIDE;
+ virtual bool SetAsDefault(bool interactive_permitted) override;
DISALLOW_COPY_AND_ASSIGN(DefaultBrowserWorker);
};
@@ -302,10 +302,10 @@ class ShellIntegration {
private:
// Check is Chrome is the default handler for this protocol.
- virtual DefaultWebClientState CheckIsDefault() OVERRIDE;
+ virtual DefaultWebClientState CheckIsDefault() override;
// Set Chrome as the default handler for this protocol.
- virtual bool SetAsDefault(bool interactive_permitted) OVERRIDE;
+ virtual bool SetAsDefault(bool interactive_permitted) override;
std::string protocol_;
« no previous file with comments | « chrome/browser/sessions/tab_restore_service_factory.h ('k') | chrome/browser/shell_integration_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698