summaryrefslogtreecommitdiffstats
path: root/components/sync_driver/data_type_manager_impl.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-06 08:04:46 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-06 15:05:09 +0000
commitfe59f48c251e124f4b896e589cb635979bb2f1fb (patch)
tree7b07cb56427dfe63f2775683555da84a557aeb90 /components/sync_driver/data_type_manager_impl.h
parent4749549c06525071692f777fc6a1fa5a9ad7f877 (diff)
downloadchromium_src-fe59f48c251e124f4b896e589cb635979bb2f1fb.zip
chromium_src-fe59f48c251e124f4b896e589cb635979bb2f1fb.tar.gz
chromium_src-fe59f48c251e124f4b896e589cb635979bb2f1fb.tar.bz2
replace OVERRIDE and FINAL with override and final in components/
BUG=417463 Review URL: https://codereview.chromium.org/623133002 Cr-Commit-Position: refs/heads/master@{#298237}
Diffstat (limited to 'components/sync_driver/data_type_manager_impl.h')
-rw-r--r--components/sync_driver/data_type_manager_impl.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/components/sync_driver/data_type_manager_impl.h b/components/sync_driver/data_type_manager_impl.h
index 7d0b101..5856a18 100644
--- a/components/sync_driver/data_type_manager_impl.h
+++ b/components/sync_driver/data_type_manager_impl.h
@@ -50,27 +50,27 @@ class DataTypeManagerImpl : public DataTypeManager,
// DataTypeManager interface.
virtual void Configure(syncer::ModelTypeSet desired_types,
- syncer::ConfigureReason reason) OVERRIDE;
- virtual void ReenableType(syncer::ModelType type) OVERRIDE;
- virtual void ResetDataTypeErrors() OVERRIDE;
+ syncer::ConfigureReason reason) override;
+ virtual void ReenableType(syncer::ModelType type) override;
+ virtual void ResetDataTypeErrors() override;
// Needed only for backend migration.
virtual void PurgeForMigration(
syncer::ModelTypeSet undesired_types,
- syncer::ConfigureReason reason) OVERRIDE;
+ syncer::ConfigureReason reason) override;
- virtual void Stop() OVERRIDE;
- virtual State state() const OVERRIDE;
+ virtual void Stop() override;
+ virtual State state() const override;
// |ModelAssociationManagerDelegate| implementation.
virtual void OnSingleDataTypeAssociationDone(
syncer::ModelType type,
- const syncer::DataTypeAssociationStats& association_stats) OVERRIDE;
+ const syncer::DataTypeAssociationStats& association_stats) override;
virtual void OnModelAssociationDone(
- const DataTypeManager::ConfigureResult& result) OVERRIDE;
+ const DataTypeManager::ConfigureResult& result) override;
virtual void OnSingleDataTypeWillStop(
syncer::ModelType type,
- const syncer::SyncError& error) OVERRIDE;
+ const syncer::SyncError& error) override;
// Used by unit tests. TODO(sync) : This would go away if we made
// this class be able to do Dependency injection. crbug.com/129212.