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

Unified Diff: chrome/browser/sync/glue/session_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/session_data_type_controller.h
diff --git a/chrome/browser/sync/glue/session_data_type_controller.h b/chrome/browser/sync/glue/session_data_type_controller.h
index 4ee284aa67f97b4ed9b69e27968fccebf579de5a..31fecd8662c204027b3768c19ee31a5972d2934a 100644
--- a/chrome/browser/sync/glue/session_data_type_controller.h
+++ b/chrome/browser/sync/glue/session_data_type_controller.h
@@ -8,6 +8,7 @@
#include <string>
+#include "base/compiler_specific.h"
#include "chrome/browser/sync/glue/frontend_data_type_controller.h"
namespace browser_sync {
@@ -25,20 +26,20 @@ class SessionDataTypeController : public FrontendDataTypeController {
SessionModelAssociator* GetModelAssociator();
// FrontendDataTypeController implementation.
- virtual syncable::ModelType type() const;
+ virtual syncable::ModelType type() const OVERRIDE;
private:
// FrontendDataTypeController implementations.
// Datatype specific creation of sync components.
- virtual void CreateSyncComponents();
+ virtual void CreateSyncComponents() OVERRIDE;
// Record unrecoverable errors.
virtual void RecordUnrecoverableError(
const tracked_objects::Location& from_here,
- const std::string& message);
+ const std::string& message) OVERRIDE;
// Record association time.
- virtual void RecordAssociationTime(base::TimeDelta time);
+ virtual void RecordAssociationTime(base::TimeDelta time) OVERRIDE;
// Record causes of start failure.
- virtual void RecordStartFailure(StartResult result);
+ virtual void RecordStartFailure(StartResult result) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(SessionDataTypeController);
};
« no previous file with comments | « chrome/browser/sync/glue/password_model_associator.h ('k') | chrome/browser/sync/glue/session_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698