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

Unified Diff: components/sync_driver/non_ui_data_type_controller.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/non_ui_data_type_controller.h
diff --git a/components/sync_driver/non_ui_data_type_controller.h b/components/sync_driver/non_ui_data_type_controller.h
index 0f4fdabc9425ef8def323bc8c92b4cd512cc4c94..d003e6ea8f90c2bb5e4d9bb6df9caea1a7b8287b 100644
--- a/components/sync_driver/non_ui_data_type_controller.h
+++ b/components/sync_driver/non_ui_data_type_controller.h
@@ -31,16 +31,16 @@ class NonUIDataTypeController : public 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 = 0;
- virtual ChangeProcessor* GetChangeProcessor() const OVERRIDE;
- virtual std::string name() const OVERRIDE;
- virtual State state() const OVERRIDE;
+ virtual ChangeProcessor* GetChangeProcessor() const override;
+ virtual std::string name() const override;
+ virtual State state() const override;
virtual void OnSingleDataTypeUnrecoverableError(
- const syncer::SyncError& error) OVERRIDE;
+ const syncer::SyncError& error) override;
protected:
// For testing only.
@@ -49,7 +49,7 @@ class NonUIDataTypeController : public DataTypeController {
virtual ~NonUIDataTypeController();
// DataTypeController interface.
- virtual void OnModelLoaded() OVERRIDE;
+ virtual void OnModelLoaded() override;
// Start any dependent services that need to be running before we can
// associate models. The default implementation is a no-op.

Powered by Google App Engine
This is Rietveld 408576698