diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 04:13:07 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 11:13:20 +0000 |
commit | 0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c (patch) | |
tree | 34810f47ea5b7f10fd9dfb98e8f5700f462c2a0a /chrome/browser/sync/test/integration/apps_helper.cc | |
parent | 9a74ddccb2e98ec53906278be3705274b95e500c (diff) | |
download | chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.zip chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.tar.gz chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.tar.bz2 |
Standardize usage of virtual/override/final in chrome/browser/sync/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=zea@chromium.org
Review URL: https://codereview.chromium.org/666733003
Cr-Commit-Position: refs/heads/master@{#300454}
Diffstat (limited to 'chrome/browser/sync/test/integration/apps_helper.cc')
-rw-r--r-- | chrome/browser/sync/test/integration/apps_helper.cc | 54 |
1 files changed, 25 insertions, 29 deletions
diff --git a/chrome/browser/sync/test/integration/apps_helper.cc b/chrome/browser/sync/test/integration/apps_helper.cc index 0c00dda..30634fb 100644 --- a/chrome/browser/sync/test/integration/apps_helper.cc +++ b/chrome/browser/sync/test/integration/apps_helper.cc @@ -146,46 +146,42 @@ class AppsMatchChecker : public StatusChangeChecker, public content::NotificationObserver { public: explicit AppsMatchChecker(const std::vector<Profile*>& profiles); - virtual ~AppsMatchChecker(); + ~AppsMatchChecker() override; // StatusChangeChecker implementation. - virtual std::string GetDebugMessage() const override; - virtual bool IsExitConditionSatisfied() override; + std::string GetDebugMessage() const override; + bool IsExitConditionSatisfied() override; // extensions::ExtensionRegistryObserver implementation. - virtual void OnExtensionLoaded( - content::BrowserContext* context, - const extensions::Extension* extension) override; - virtual void OnExtensionUnloaded( + void OnExtensionLoaded(content::BrowserContext* context, + const extensions::Extension* extension) override; + void OnExtensionUnloaded( content::BrowserContext* context, const extensions::Extension* extenion, extensions::UnloadedExtensionInfo::Reason reason) override; - virtual void OnExtensionInstalled(content::BrowserContext* browser_context, - const extensions::Extension* extension, - bool is_update) override; - virtual void OnExtensionUninstalled( - content::BrowserContext* browser_context, - const extensions::Extension* extension, - extensions::UninstallReason reason) override; + void OnExtensionInstalled(content::BrowserContext* browser_context, + const extensions::Extension* extension, + bool is_update) override; + void OnExtensionUninstalled(content::BrowserContext* browser_context, + const extensions::Extension* extension, + extensions::UninstallReason reason) override; // extensions::ExtensionPrefsObserver implementation. - virtual void OnExtensionDisableReasonsChanged(const std::string& extension_id, - int disabled_reasons) override; - virtual void OnExtensionRegistered(const std::string& extension_id, - const base::Time& install_time, - bool is_enabled) override; - virtual void OnExtensionPrefsLoaded( - const std::string& extension_id, - const extensions::ExtensionPrefs* prefs) override; - virtual void OnExtensionPrefsDeleted( - const std::string& extension_id) override; - virtual void OnExtensionStateChanged(const std::string& extension_id, - bool state) override; + void OnExtensionDisableReasonsChanged(const std::string& extension_id, + int disabled_reasons) override; + void OnExtensionRegistered(const std::string& extension_id, + const base::Time& install_time, + bool is_enabled) override; + void OnExtensionPrefsLoaded(const std::string& extension_id, + const extensions::ExtensionPrefs* prefs) override; + void OnExtensionPrefsDeleted(const std::string& extension_id) override; + void OnExtensionStateChanged(const std::string& extension_id, + bool state) override; // Implementation of content::NotificationObserver. - 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; void Wait(); |