| Index: chrome/browser/extensions/settings/settings_sync_processor.h
|
| diff --git a/chrome/browser/extensions/settings/settings_sync_processor.h b/chrome/browser/extensions/settings/settings_sync_processor.h
|
| index 42c5d6b2a48253742168d89fb2e773fe6e45f218..bd55bd824824295b95d91c19549ccfa8eb526aaa 100644
|
| --- a/chrome/browser/extensions/settings/settings_sync_processor.h
|
| +++ b/chrome/browser/extensions/settings/settings_sync_processor.h
|
| @@ -27,7 +27,7 @@ namespace extensions {
|
| class SettingsSyncProcessor {
|
| public:
|
| SettingsSyncProcessor(const std::string& extension_id,
|
| - syncable::ModelType type,
|
| + syncer::ModelType type,
|
| syncer::SyncChangeProcessor* sync_processor);
|
| ~SettingsSyncProcessor();
|
|
|
| @@ -41,14 +41,14 @@ class SettingsSyncProcessor {
|
| // be taken, but this must be notified for internal bookkeeping.
|
| void NotifyChanges(const ValueStoreChangeList& changes);
|
|
|
| - syncable::ModelType type() { return type_; }
|
| + syncer::ModelType type() { return type_; }
|
|
|
| private:
|
| // ID of the extension the changes are for.
|
| const std::string extension_id_;
|
|
|
| // Sync model type. Either EXTENSION_SETTING or APP_SETTING.
|
| - const syncable::ModelType type_;
|
| + const syncer::ModelType type_;
|
|
|
| // The sync processor used to send changes to sync.
|
| syncer::SyncChangeProcessor* const sync_processor_;
|
|
|