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_; |