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

Unified Diff: sync/syncable/entry.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/syncable/directory_backing_store_unittest.cc ('k') | sync/syncable/entry_kernel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/entry.cc
diff --git a/sync/syncable/entry.cc b/sync/syncable/entry.cc
index 948a0fcab4662bce95bf97c0f284b3d98a0cd896..ba64299c7340271cae8ac2e3280b5c40a2ed7256 100644
--- a/sync/syncable/entry.cc
+++ b/sync/syncable/entry.cc
@@ -64,7 +64,7 @@ const string& Entry::Get(StringField field) const {
return kernel_->ref(field);
}
-syncer::ModelType Entry::GetServerModelType() const {
+ModelType Entry::GetServerModelType() const {
ModelType specifics_type = kernel_->GetServerModelType();
if (specifics_type != UNSPECIFIED)
return specifics_type;
@@ -81,7 +81,7 @@ syncer::ModelType Entry::GetServerModelType() const {
return UNSPECIFIED;
}
-syncer::ModelType Entry::GetModelType() const {
+ModelType Entry::GetModelType() const {
ModelType specifics_type = GetModelTypeFromSpecifics(Get(SPECIFICS));
if (specifics_type != UNSPECIFIED)
return specifics_type;
@@ -111,8 +111,7 @@ std::ostream& operator<<(std::ostream& os, const Entry& entry) {
}
for ( ; i < TIME_FIELDS_END; ++i) {
os << g_metas_columns[i].name << ": "
- << syncer::GetTimeDebugString(
- kernel->ref(static_cast<TimeField>(i))) << ", ";
+ << GetTimeDebugString(kernel->ref(static_cast<TimeField>(i))) << ", ";
}
for ( ; i < ID_FIELDS_END; ++i) {
os << g_metas_columns[i].name << ": "
« no previous file with comments | « sync/syncable/directory_backing_store_unittest.cc ('k') | sync/syncable/entry_kernel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698