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

Unified Diff: chrome/browser/media_galleries/media_galleries_preferences.h

Issue 660343006: Standardize usage of virtual/override/final in chrome/browser/media_galleries (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/media_galleries/media_galleries_preferences.h
diff --git a/chrome/browser/media_galleries/media_galleries_preferences.h b/chrome/browser/media_galleries/media_galleries_preferences.h
index 6ed8da55268f4a0293da9f0389f1896f79f2cdf9..5c40399031fccba67c22ad1939f5c0735be645f4 100644
--- a/chrome/browser/media_galleries/media_galleries_preferences.h
+++ b/chrome/browser/media_galleries/media_galleries_preferences.h
@@ -179,7 +179,7 @@ class MediaGalleriesPreferences
};
explicit MediaGalleriesPreferences(Profile* profile);
- virtual ~MediaGalleriesPreferences();
+ ~MediaGalleriesPreferences() override;
// Ensures that the preferences is initialized. The provided callback, if
// non-null, will be called when initialization is complete. If initialization
@@ -200,7 +200,7 @@ class MediaGalleriesPreferences
void RemoveGalleryChangeObserver(GalleryChangeObserver* observer);
// RemovableStorageObserver implementation.
- virtual void OnRemovableStorageAttached(
+ void OnRemovableStorageAttached(
const storage_monitor::StorageInfo& info) override;
// Lookup a media gallery and fill in information about it and return true if
@@ -277,7 +277,7 @@ class MediaGalleriesPreferences
void SetLastScanCompletionTime(const base::Time& time);
// KeyedService implementation:
- virtual void Shutdown() override;
+ void Shutdown() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);

Powered by Google App Engine
This is Rietveld 408576698