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

Unified Diff: chrome/browser/supervised_user/supervised_user_shared_settings_service.h

Issue 652473004: Standardize usage of virtual/override/final in chrome/browser/supervised_user/ (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/supervised_user/supervised_user_shared_settings_service.h
diff --git a/chrome/browser/supervised_user/supervised_user_shared_settings_service.h b/chrome/browser/supervised_user/supervised_user_shared_settings_service.h
index a6d843630ee8d15a26e9bab6c03cba9c6e4332c7..a1d588ad479f57f5ae14a2713f5706ebb9c9f545 100644
--- a/chrome/browser/supervised_user/supervised_user_shared_settings_service.h
+++ b/chrome/browser/supervised_user/supervised_user_shared_settings_service.h
@@ -51,7 +51,7 @@ class SupervisedUserSharedSettingsService : public KeyedService,
// |SupervisedUserSharedSettingsServiceFactory::GetForProfile(...)| instead to
// get an instance of this service in production code.
explicit SupervisedUserSharedSettingsService(PrefService* prefs);
- virtual ~SupervisedUserSharedSettingsService();
+ ~SupervisedUserSharedSettingsService() override;
// Returns the value for the given |key| and the supervised user identified by
// |su_id|. If either the supervised user or the key does not exist, NULL is
@@ -89,18 +89,17 @@ class SupervisedUserSharedSettingsService : public KeyedService,
bool acknowledged);
// KeyedService implementation:
- virtual void Shutdown() override;
+ void Shutdown() override;
// SyncableService implementation:
- virtual syncer::SyncMergeResult MergeDataAndStartSyncing(
+ syncer::SyncMergeResult MergeDataAndStartSyncing(
syncer::ModelType type,
const syncer::SyncDataList& initial_sync_data,
scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
scoped_ptr<syncer::SyncErrorFactory> error_handler) override;
- virtual void StopSyncing(syncer::ModelType type) override;
- virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const
- override;
- virtual syncer::SyncError ProcessSyncChanges(
+ void StopSyncing(syncer::ModelType type) override;
+ syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override;
+ syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
const syncer::SyncChangeList& change_list) override;

Powered by Google App Engine
This is Rietveld 408576698