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

Unified Diff: chrome/browser/extensions/api/preferences_private/preferences_private_api.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/extensions/api/preferences_private/preferences_private_api.h
diff --git a/chrome/browser/extensions/api/preferences_private/preferences_private_api.h b/chrome/browser/extensions/api/preferences_private/preferences_private_api.h
index 1189f4513c5dbfa7ab7c41553d98f15b9df02bd2..f1f2ffa8c07f3df2d7d0f0f09437118867a8d4e6 100644
--- a/chrome/browser/extensions/api/preferences_private/preferences_private_api.h
+++ b/chrome/browser/extensions/api/preferences_private/preferences_private_api.h
@@ -22,14 +22,14 @@ class PreferencesPrivateGetSyncCategoriesWithoutPassphraseFunction
PreferencesPrivateGetSyncCategoriesWithoutPassphraseFunction();
protected:
- virtual ~PreferencesPrivateGetSyncCategoriesWithoutPassphraseFunction();
+ ~PreferencesPrivateGetSyncCategoriesWithoutPassphraseFunction() override;
private:
// ProfileSyncServiceObserver:
- virtual void OnStateChanged() override;
+ void OnStateChanged() override;
// ExtensionFunction:
- virtual bool RunAsync() override;
+ bool RunAsync() override;
DISALLOW_COPY_AND_ASSIGN(
PreferencesPrivateGetSyncCategoriesWithoutPassphraseFunction);

Powered by Google App Engine
This is Rietveld 408576698