| Index: chrome/browser/sync/glue/app_data_type_controller.h
|
| diff --git a/chrome/browser/sync/glue/app_data_type_controller.h b/chrome/browser/sync/glue/app_data_type_controller.h
|
| index e8797f4a58ecdcf1d9d3d87a69cb0d00ee1556e2..4bd2750d6ba3e993250ebc35e99c2c8098334b36 100644
|
| --- a/chrome/browser/sync/glue/app_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/app_data_type_controller.h
|
| @@ -34,26 +34,15 @@ class AppDataTypeController : public DataTypeController {
|
|
|
| virtual void Stop();
|
|
|
| - virtual bool enabled() {
|
| - return true;
|
| - }
|
| -
|
| - virtual syncable::ModelType type() {
|
| - return syncable::APPS;
|
| - }
|
| -
|
| - virtual browser_sync::ModelSafeGroup model_safe_group() {
|
| - return browser_sync::GROUP_UI;
|
| - }
|
| -
|
| - virtual const char* name() const {
|
| - // For logging only.
|
| - return "app";
|
| - }
|
| -
|
| - 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(
|
|
|