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

Unified Diff: chrome/browser/sync/glue/frontend_data_type_controller.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/sync/glue/frontend_data_type_controller.h
diff --git a/chrome/browser/sync/glue/frontend_data_type_controller.h b/chrome/browser/sync/glue/frontend_data_type_controller.h
index dcc24c2a6df60078c22e17b761bdc0cce16ce03f..68dfcb798a141d7fa6914ae9924aebbc67e206f1 100644
--- a/chrome/browser/sync/glue/frontend_data_type_controller.h
+++ b/chrome/browser/sync/glue/frontend_data_type_controller.h
@@ -53,17 +53,17 @@ class FrontendDataTypeController : public sync_driver::DataTypeController {
// DataTypeController interface.
virtual void LoadModels(
- const ModelLoadCallback& model_load_callback) OVERRIDE;
- virtual void StartAssociating(const StartCallback& start_callback) OVERRIDE;
- virtual void Stop() OVERRIDE;
+ const ModelLoadCallback& model_load_callback) override;
+ virtual void StartAssociating(const StartCallback& start_callback) override;
+ virtual void Stop() override;
virtual syncer::ModelType type() const = 0;
- virtual syncer::ModelSafeGroup model_safe_group() const OVERRIDE;
- virtual std::string name() const OVERRIDE;
- virtual State state() const OVERRIDE;
+ virtual syncer::ModelSafeGroup model_safe_group() const override;
+ virtual std::string name() const override;
+ virtual State state() const override;
// DataTypeErrorHandler interface.
virtual void OnSingleDataTypeUnrecoverableError(
- const syncer::SyncError& error) OVERRIDE;
+ const syncer::SyncError& error) override;
protected:
friend class FrontendDataTypeControllerMock;
@@ -84,7 +84,7 @@ class FrontendDataTypeController : public sync_driver::DataTypeController {
virtual void CreateSyncComponents() = 0;
// DataTypeController interface.
- virtual void OnModelLoaded() OVERRIDE;
+ virtual void OnModelLoaded() override;
// Perform any DataType controller specific state cleanup before stopping
// the datatype controller. The default implementation is a no-op.
@@ -104,7 +104,7 @@ class FrontendDataTypeController : public sync_driver::DataTypeController {
virtual sync_driver::AssociatorInterface* model_associator() const;
virtual void set_model_associator(
sync_driver::AssociatorInterface* associator);
- virtual sync_driver::ChangeProcessor* GetChangeProcessor() const OVERRIDE;
+ virtual sync_driver::ChangeProcessor* GetChangeProcessor() const override;
virtual void set_change_processor(sync_driver::ChangeProcessor* processor);
// Handles the reporting of unrecoverable error. It records stuff in
« no previous file with comments | « chrome/browser/sync/glue/favicon_cache_unittest.cc ('k') | chrome/browser/sync/glue/frontend_data_type_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698