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

Unified Diff: chrome/browser/extensions/api/storage/sync_storage_backend.h

Issue 624153002: replace OVERRIDE and FINAL with override and 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/storage/sync_storage_backend.h
diff --git a/chrome/browser/extensions/api/storage/sync_storage_backend.h b/chrome/browser/extensions/api/storage/sync_storage_backend.h
index 72f954cc3b58fd32c0aa305d621f0d4f7216c8a3..ad816778e8e63e458fa95ceac21bbd7fcb82b3d2 100644
--- a/chrome/browser/extensions/api/storage/sync_storage_backend.h
+++ b/chrome/browser/extensions/api/storage/sync_storage_backend.h
@@ -52,16 +52,16 @@ class SyncStorageBackend : public syncer::SyncableService {
// syncer::SyncableService implementation.
virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type)
- const OVERRIDE;
+ const override;
virtual syncer::SyncMergeResult MergeDataAndStartSyncing(
syncer::ModelType type,
const syncer::SyncDataList& initial_sync_data,
scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
- scoped_ptr<syncer::SyncErrorFactory> sync_error_factory) OVERRIDE;
+ scoped_ptr<syncer::SyncErrorFactory> sync_error_factory) override;
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) OVERRIDE;
- virtual void StopSyncing(syncer::ModelType type) OVERRIDE;
+ const syncer::SyncChangeList& change_list) override;
+ virtual void StopSyncing(syncer::ModelType type) override;
private:
// Gets a weak reference to the storage area for a given extension,

Powered by Google App Engine
This is Rietveld 408576698