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

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

Issue 8470005: Add OVERRIDE to chrome/browser/sync/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: includes Created 9 years, 1 month 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 fc4c1adf0e04a13d8fed18580ef509cab04dbc94..73a4b210c2bb49889ce618836ba5ae0d18ead242 100644
--- a/chrome/browser/sync/glue/frontend_data_type_controller.h
+++ b/chrome/browser/sync/glue/frontend_data_type_controller.h
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/sync/glue/data_type_controller.h"
@@ -46,16 +47,16 @@ class FrontendDataTypeController : public DataTypeController {
virtual ~FrontendDataTypeController();
// DataTypeController interface.
- virtual void Start(StartCallback* start_callback);
- virtual void Stop();
+ virtual void Start(StartCallback* start_callback) OVERRIDE;
+ virtual void Stop() OVERRIDE;
virtual syncable::ModelType type() const = 0;
- virtual browser_sync::ModelSafeGroup model_safe_group() const;
- virtual std::string name() const;
- virtual State state() const;
+ virtual browser_sync::ModelSafeGroup model_safe_group() const OVERRIDE;
+ virtual std::string name() const OVERRIDE;
+ virtual State state() const OVERRIDE;
// UnrecoverableErrorHandler interface.
virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
- const std::string& message);
+ const std::string& message) OVERRIDE;
protected:
// For testing only.
« no previous file with comments | « chrome/browser/sync/glue/extension_data_type_controller.h ('k') | chrome/browser/sync/glue/history_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698