Index: chrome/browser/sync/glue/preference_data_type_controller.h |
diff --git a/chrome/browser/sync/glue/preference_data_type_controller.h b/chrome/browser/sync/glue/preference_data_type_controller.h |
index bc2b93d3f18f7c134c9c09273d867af0def17251..4fc177d44f6125df73d90209bde8709bc937b842 100644 |
--- a/chrome/browser/sync/glue/preference_data_type_controller.h |
+++ b/chrome/browser/sync/glue/preference_data_type_controller.h |
@@ -29,26 +29,15 @@ class PreferenceDataTypeController : public DataTypeController { |
virtual void Stop(); |
- virtual bool enabled() { |
- return true; |
- } |
- |
- virtual syncable::ModelType type() { |
- return syncable::PREFERENCES; |
- } |
- |
- virtual browser_sync::ModelSafeGroup model_safe_group() { |
- return browser_sync::GROUP_UI; |
- } |
- |
- virtual const char* name() const { |
- // For logging only. |
- return "preference"; |
- } |
- |
- virtual State state() { |
- return state_; |
- } |
+ virtual bool enabled(); |
+ |
+ virtual syncable::ModelType type(); |
+ |
+ virtual browser_sync::ModelSafeGroup model_safe_group(); |
+ |
+ virtual const char* name() const; |
+ |
+ virtual State state(); |
// UnrecoverableErrorHandler interface. |
virtual void OnUnrecoverableError(const tracked_objects::Location& from_here, |