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

Unified Diff: sync/syncable/entry_kernel.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/entry_kernel.h ('k') | sync/syncable/model_type_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/entry_kernel.cc
diff --git a/sync/syncable/entry_kernel.cc b/sync/syncable/entry_kernel.cc
index 9308bcf5ff2a0afe178baf7ab343d515a5e62cce..550fbb2bbd6163923ec0b033c6cefdd1d7ddc056 100644
--- a/sync/syncable/entry_kernel.cc
+++ b/sync/syncable/entry_kernel.cc
@@ -20,7 +20,7 @@ EntryKernel::EntryKernel() : dirty_(false) {
EntryKernel::~EntryKernel() {}
-syncer::ModelType EntryKernel::GetServerModelType() const {
+ModelType EntryKernel::GetServerModelType() const {
ModelType specifics_type = GetModelTypeFromSpecifics(ref(SERVER_SPECIFICS));
if (specifics_type != UNSPECIFIED)
return specifics_type;
@@ -62,7 +62,7 @@ StringValue* Int64ToValue(int64 i) {
}
StringValue* TimeToValue(const base::Time& t) {
- return Value::CreateStringValue(syncer::GetTimeDebugString(t));
+ return Value::CreateStringValue(GetTimeDebugString(t));
}
StringValue* IdToValue(const Id& id) {
@@ -120,7 +120,7 @@ DictionaryValue* EntryKernel::ToValue() const {
// Proto fields.
SetFieldValues(*this, kernel_info,
- &GetProtoFieldString, &syncer::EntitySpecificsToValue,
+ &GetProtoFieldString, &EntitySpecificsToValue,
PROTO_FIELDS_BEGIN, PROTO_FIELDS_END - 1);
// Bit temps.
« no previous file with comments | « sync/syncable/entry_kernel.h ('k') | sync/syncable/model_type_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698