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

Unified Diff: sync/api/sync_change.cc

Issue 10795018: [Sync] Remove unneeded 'using syncer::' lines and 'syncer::' scopings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fiix indent Created 8 years, 5 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 ee1cdeafd6ed80c7bed307b9353956be4bd1e1fd..a9b9199d73df45e0fad6bd7412725201bce13726 100644
--- a/sync/api/sync_change.cc
+++ b/sync/api/sync_change.cc
@@ -29,11 +29,11 @@ bool SyncChange::IsValid() const {
// Data from the syncer must always have valid specifics.
if (!sync_data_.IsLocal())
- return syncer::IsRealDataType(sync_data_.GetDataType());
+ return IsRealDataType(sync_data_.GetDataType());
// Local changes must always have a tag and specify a valid datatype.
if (sync_data_.GetTag().empty() ||
- !syncer::IsRealDataType(sync_data_.GetDataType())) {
+ !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