| Index: chrome/browser/sync/glue/typed_url_data_type_controller.h
|
| diff --git a/chrome/browser/sync/glue/typed_url_data_type_controller.h b/chrome/browser/sync/glue/typed_url_data_type_controller.h
|
| index d6cba9b286fea90f0a8a641ba0ec3142afe756b2..d3892a10951d94f42adee9aa6f57ef4a21186dd1 100644
|
| --- a/chrome/browser/sync/glue/typed_url_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/typed_url_data_type_controller.h
|
| @@ -50,26 +50,15 @@ class TypedUrlDataTypeController : public DataTypeController,
|
|
|
| virtual void Stop();
|
|
|
| - virtual bool enabled() {
|
| - return true;
|
| - }
|
| + virtual bool enabled();
|
|
|
| - virtual syncable::ModelType type() {
|
| - return syncable::TYPED_URLS;
|
| - }
|
| + virtual syncable::ModelType type();
|
|
|
| - virtual browser_sync::ModelSafeGroup model_safe_group() {
|
| - return browser_sync::GROUP_HISTORY;
|
| - }
|
| + virtual browser_sync::ModelSafeGroup model_safe_group();
|
|
|
| - virtual const char* name() const {
|
| - // For logging only.
|
| - return "typed_url";
|
| - }
|
| + virtual const char* name() const;
|
|
|
| - virtual State state() {
|
| - return state_;
|
| - }
|
| + virtual State state();
|
|
|
| // UnrecoverableHandler implementation
|
| virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
|
|
|