Index: chrome/browser/sync/glue/bookmark_data_type_controller.h |
diff --git a/chrome/browser/sync/glue/bookmark_data_type_controller.h b/chrome/browser/sync/glue/bookmark_data_type_controller.h |
index 41068c8f999335a4c49dbfafbf4888305be04550..0716b44ef3383676e05e7fdf7d0a1dfe6f656062 100644 |
--- a/chrome/browser/sync/glue/bookmark_data_type_controller.h |
+++ b/chrome/browser/sync/glue/bookmark_data_type_controller.h |
@@ -41,26 +41,15 @@ class BookmarkDataTypeController : public DataTypeController, |
virtual void Stop(); |
- virtual bool enabled() { |
- return true; |
- } |
- |
- virtual syncable::ModelType type() { |
- return syncable::BOOKMARKS; |
- } |
- |
- virtual browser_sync::ModelSafeGroup model_safe_group() { |
- return browser_sync::GROUP_UI; |
- } |
- |
- virtual const char* name() const { |
- // For logging only. |
- return "bookmark"; |
- } |
- |
- 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, |