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 ae815d4ab2338bbc2768d70599121817f39e61e8..873678986407f9705daf4da954e91ef83ac20105 100644 |
--- a/chrome/browser/sync/glue/session_data_type_controller.h |
+++ b/chrome/browser/sync/glue/session_data_type_controller.h |
@@ -33,33 +33,22 @@ class SessionDataTypeController : public DataTypeController { |
virtual void Stop(); |
- virtual bool enabled() { |
- return true; |
- } |
+ virtual bool enabled(); |
- virtual syncable::ModelType type() { |
- return syncable::SESSIONS; |
- } |
+ virtual syncable::ModelType type(); |
- virtual browser_sync::ModelSafeGroup model_safe_group() { |
- return browser_sync::GROUP_UI; |
- } |
+ virtual browser_sync::ModelSafeGroup model_safe_group(); |
- virtual const char* name() const { |
- // For logging only. |
- return "session"; |
- } |
+ virtual const char* name() const; |
- virtual State state() { |
- return state_; |
- } |
+ virtual State state(); |
// UnrecoverableErrorHandler interface. |
virtual void OnUnrecoverableError( |
const tracked_objects::Location& from_here, |
const std::string& message); |
-SessionModelAssociator* GetModelAssociator(); |
+ SessionModelAssociator* GetModelAssociator(); |
private: |
// Helper method to run the stashed start callback with a given result. |