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

Unified Diff: sync/api/sync_change.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
« no previous file with comments | « sync/api/fake_syncable_service.cc ('k') | sync/api/sync_change_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/api/sync_change.cc
diff --git a/sync/api/sync_change.cc b/sync/api/sync_change.cc
index 49a387b6045b1e6e654ba9ab36efe472c237f408..64da5b797dcbe11d1c38f62d9ab26ce5aaa8ba17 100644
--- a/sync/api/sync_change.cc
+++ b/sync/api/sync_change.cc
@@ -25,11 +25,11 @@ bool SyncChange::IsValid() const {
// Data from the syncer must always have valid specifics.
if (!sync_data_.IsLocal())
- return syncable::IsRealDataType(sync_data_.GetDataType());
+ return syncer::IsRealDataType(sync_data_.GetDataType());
// Local changes must always have a tag and specify a valid datatype.
if (sync_data_.GetTag().empty() ||
- !syncable::IsRealDataType(sync_data_.GetDataType())) {
+ !syncer::IsRealDataType(sync_data_.GetDataType())) {
return false;
}
« no previous file with comments | « sync/api/fake_syncable_service.cc ('k') | sync/api/sync_change_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698