diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 05:36:36 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 12:36:52 +0000 |
commit | ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1 (patch) | |
tree | c3ea80b24727cce16ccabffd4e6f2cc85937a1b2 /chrome/browser/extensions/api/cookies/cookies_api.h | |
parent | 6d18e40fc2904b5314fd3b2ff7724819cff6df13 (diff) | |
download | chromium_src-ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1.zip chromium_src-ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1.tar.gz chromium_src-ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1.tar.bz2 |
Standardize usage of virtual/override/final in chrome/browser/extensions/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=mek@chromium.org
Review URL: https://codereview.chromium.org/666153002
Cr-Commit-Position: refs/heads/master@{#300474}
Diffstat (limited to 'chrome/browser/extensions/api/cookies/cookies_api.h')
-rw-r--r-- | chrome/browser/extensions/api/cookies/cookies_api.h | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/chrome/browser/extensions/api/cookies/cookies_api.h b/chrome/browser/extensions/api/cookies/cookies_api.h index 41f33f3..30e2c30 100644 --- a/chrome/browser/extensions/api/cookies/cookies_api.h +++ b/chrome/browser/extensions/api/cookies/cookies_api.h @@ -34,13 +34,13 @@ namespace extensions { class CookiesEventRouter : public content::NotificationObserver { public: explicit CookiesEventRouter(content::BrowserContext* context); - virtual ~CookiesEventRouter(); + ~CookiesEventRouter() override; private: // content::NotificationObserver implementation. - virtual void Observe(int type, - const content::NotificationSource& source, - const content::NotificationDetails& details) override; + void Observe(int type, + const content::NotificationSource& source, + const content::NotificationDetails& details) override; // Handler for the COOKIE_CHANGED event. The method takes the details of such // an event and constructs a suitable JSON formatted extension event from it. @@ -68,10 +68,10 @@ class CookiesGetFunction : public ChromeAsyncExtensionFunction { CookiesGetFunction(); protected: - virtual ~CookiesGetFunction(); + ~CookiesGetFunction() override; // ExtensionFunction: - virtual bool RunAsync() override; + bool RunAsync() override; private: void GetCookieOnIOThread(); @@ -91,10 +91,10 @@ class CookiesGetAllFunction : public ChromeAsyncExtensionFunction { CookiesGetAllFunction(); protected: - virtual ~CookiesGetAllFunction(); + ~CookiesGetAllFunction() override; // ExtensionFunction: - virtual bool RunAsync() override; + bool RunAsync() override; private: void GetAllCookiesOnIOThread(); @@ -114,8 +114,8 @@ class CookiesSetFunction : public ChromeAsyncExtensionFunction { CookiesSetFunction(); protected: - virtual ~CookiesSetFunction(); - virtual bool RunAsync() override; + ~CookiesSetFunction() override; + bool RunAsync() override; private: void SetCookieOnIOThread(); @@ -137,10 +137,10 @@ class CookiesRemoveFunction : public ChromeAsyncExtensionFunction { CookiesRemoveFunction(); protected: - virtual ~CookiesRemoveFunction(); + ~CookiesRemoveFunction() override; // ExtensionFunction: - virtual bool RunAsync() override; + bool RunAsync() override; private: void RemoveCookieOnIOThread(); @@ -159,27 +159,26 @@ class CookiesGetAllCookieStoresFunction : public ChromeSyncExtensionFunction { COOKIES_GETALLCOOKIESTORES) protected: - virtual ~CookiesGetAllCookieStoresFunction() {} + ~CookiesGetAllCookieStoresFunction() override {} // ExtensionFunction: - virtual bool RunSync() override; + bool RunSync() override; }; class CookiesAPI : public BrowserContextKeyedAPI, public extensions::EventRouter::Observer { public: explicit CookiesAPI(content::BrowserContext* context); - virtual ~CookiesAPI(); + ~CookiesAPI() override; // KeyedService implementation. - virtual void Shutdown() override; + void Shutdown() override; // BrowserContextKeyedAPI implementation. static BrowserContextKeyedAPIFactory<CookiesAPI>* GetFactoryInstance(); // EventRouter::Observer implementation. - virtual void OnListenerAdded(const extensions::EventListenerInfo& details) - override; + void OnListenerAdded(const extensions::EventListenerInfo& details) override; private: friend class BrowserContextKeyedAPIFactory<CookiesAPI>; |