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

Unified Diff: components/sync_driver/fake_generic_change_processor.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/sync_driver/fake_generic_change_processor.h
diff --git a/components/sync_driver/fake_generic_change_processor.h b/components/sync_driver/fake_generic_change_processor.h
index faae4bc9947ff511a60405815d4f9fb73a361942..a16c9e4cf051404503caeb8b6d1027e3d3375a2b 100644
--- a/components/sync_driver/fake_generic_change_processor.h
+++ b/components/sync_driver/fake_generic_change_processor.h
@@ -28,13 +28,13 @@ class FakeGenericChangeProcessor : public GenericChangeProcessor {
// GenericChangeProcessor implementations.
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) OVERRIDE;
+ const syncer::SyncChangeList& change_list) override;
virtual syncer::SyncError GetAllSyncDataReturnError(
- syncer::SyncDataList* data) const OVERRIDE;
- virtual bool GetDataTypeContext(std::string* context) const OVERRIDE;
- virtual int GetSyncCount() OVERRIDE;
- virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) OVERRIDE;
- virtual bool CryptoReadyIfNecessary() OVERRIDE;
+ syncer::SyncDataList* data) const override;
+ virtual bool GetDataTypeContext(std::string* context) const override;
+ virtual int GetSyncCount() override;
+ virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) override;
+ virtual bool CryptoReadyIfNecessary() override;
private:
bool sync_model_has_user_created_nodes_;
@@ -53,7 +53,7 @@ class FakeGenericChangeProcessorFactory : public GenericChangeProcessorFactory {
DataTypeErrorHandler* error_handler,
const base::WeakPtr<syncer::SyncableService>& local_service,
const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
- SyncApiComponentFactory* sync_factory) OVERRIDE;
+ SyncApiComponentFactory* sync_factory) override;
private:
scoped_ptr<FakeGenericChangeProcessor> processor_;
« no previous file with comments | « components/sync_driver/fake_data_type_controller.h ('k') | components/sync_driver/generic_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698