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

Unified Diff: chrome/browser/sync/glue/non_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/non_frontend_data_type_controller.h
diff --git a/chrome/browser/sync/glue/non_frontend_data_type_controller.h b/chrome/browser/sync/glue/non_frontend_data_type_controller.h
index c48d865f4ae451f6b92940ab905f3b8f6ff25cf3..87d11bd76fd04b1a600552158509c3264eb0e0ff 100644
--- a/chrome/browser/sync/glue/non_frontend_data_type_controller.h
+++ b/chrome/browser/sync/glue/non_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 "base/synchronization/waitable_event.h"
#include "chrome/browser/sync/glue/data_type_controller.h"
@@ -45,17 +46,17 @@ class NonFrontendDataTypeController : public DataTypeController {
virtual ~NonFrontendDataTypeController();
// 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 = 0;
- virtual std::string name() const;
- virtual State state() const;
+ virtual std::string name() const OVERRIDE;
+ virtual State state() const OVERRIDE;
// UnrecoverableErrorHandler interface.
// Note: this is performed on the datatype's thread.
virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
- const std::string& message);
+ const std::string& message) OVERRIDE;
protected:
// For testing only.
NonFrontendDataTypeController();

Powered by Google App Engine
This is Rietveld 408576698