diff options
Diffstat (limited to 'chrome/browser/shell_integration.h')
-rw-r--r-- | chrome/browser/shell_integration.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h index 49060c1..d34d3a22 100644 --- a/chrome/browser/shell_integration.h +++ b/chrome/browser/shell_integration.h @@ -275,13 +275,13 @@ class ShellIntegration { explicit DefaultBrowserWorker(DefaultWebClientObserver* observer); private: - virtual ~DefaultBrowserWorker() {} + ~DefaultBrowserWorker() override {} // Check if Chrome is the default browser. - virtual DefaultWebClientState CheckIsDefault() override; + DefaultWebClientState CheckIsDefault() override; // Set Chrome as the default browser. - virtual bool SetAsDefault(bool interactive_permitted) override; + bool SetAsDefault(bool interactive_permitted) override; DISALLOW_COPY_AND_ASSIGN(DefaultBrowserWorker); }; @@ -298,14 +298,14 @@ class ShellIntegration { const std::string& protocol() const { return protocol_; } protected: - virtual ~DefaultProtocolClientWorker() {} + ~DefaultProtocolClientWorker() override {} private: // Check is Chrome is the default handler for this protocol. - virtual DefaultWebClientState CheckIsDefault() override; + DefaultWebClientState CheckIsDefault() override; // Set Chrome as the default handler for this protocol. - virtual bool SetAsDefault(bool interactive_permitted) override; + bool SetAsDefault(bool interactive_permitted) override; std::string protocol_; |