| Index: chrome/browser/sync/glue/search_engine_data_type_controller.h
|
| diff --git a/chrome/browser/sync/glue/search_engine_data_type_controller.h b/chrome/browser/sync/glue/search_engine_data_type_controller.h
|
| index bf948544ad382c73c45d36ac8814ce1ca42feb21..b0ccbe9d063e5b2807a7b492c2b73a5c69b25c94 100644
|
| --- a/chrome/browser/sync/glue/search_engine_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/search_engine_data_type_controller.h
|
| @@ -9,6 +9,7 @@
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "chrome/browser/sync/glue/generic_change_processor.h"
|
| #include "chrome/browser/sync/glue/frontend_data_type_controller.h"
|
| #include "content/common/notification_observer.h"
|
| #include "content/common/notification_registrar.h"
|
| @@ -32,6 +33,9 @@ class SearchEngineDataTypeController : public FrontendDataTypeController,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) OVERRIDE;
|
|
|
| + protected:
|
| + virtual GenericChangeProcessor* change_processor() const OVERRIDE;
|
| +
|
| private:
|
| // FrontendDataTypeController implementations.
|
| virtual bool StartModels() OVERRIDE;
|
| @@ -43,6 +47,8 @@ class SearchEngineDataTypeController : public FrontendDataTypeController,
|
| virtual void RecordAssociationTime(base::TimeDelta time) OVERRIDE;
|
| virtual void RecordStartFailure(StartResult result) OVERRIDE;
|
|
|
| + scoped_ptr<GenericChangeProcessor> change_processor_;
|
| +
|
| NotificationRegistrar registrar_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SearchEngineDataTypeController);
|
|
|