Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2879)

Unified Diff: chrome/browser/extensions/settings/settings_sync_processor.h

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « chrome/browser/extensions/settings/settings_frontend.cc ('k') | chrome/browser/extensions/settings/settings_sync_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698