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

Unified Diff: chrome/browser/sync/glue/theme_change_processor.cc

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/sync/glue/theme_change_processor.cc
diff --git a/chrome/browser/sync/glue/theme_change_processor.cc b/chrome/browser/sync/glue/theme_change_processor.cc
index d975af125a4c2dbb0db18d5e18af9790c97b2f38..1de4a0fce0215c6fff048e3277a4b419c43a33c4 100644
--- a/chrome/browser/sync/glue/theme_change_processor.cc
+++ b/chrome/browser/sync/glue/theme_change_processor.cc
@@ -43,7 +43,7 @@ void ThemeChangeProcessor::Observe(
syncer::WriteTransaction trans(FROM_HERE, share_handle());
syncer::WriteNode node(&trans);
- if (node.InitByClientTagLookup(syncable::THEMES,
+ if (node.InitByClientTagLookup(syncer::THEMES,
kCurrentThemeClientTag) !=
syncer::BaseNode::INIT_OK) {
std::string err = "Could not create node with client tag: ";
@@ -105,7 +105,7 @@ void ThemeChangeProcessor::ApplyChangesFromSyncModel(
"Theme node lookup failed.");
return;
}
- DCHECK_EQ(node.GetModelType(), syncable::THEMES);
+ DCHECK_EQ(node.GetModelType(), syncer::THEMES);
DCHECK(profile_);
theme_specifics = node.GetThemeSpecifics();
}
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_registrar_unittest.cc ('k') | chrome/browser/sync/glue/theme_data_type_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698