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

Unified Diff: sync/syncable/entry_kernel.h

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.cc ('k') | sync/syncable/entry_kernel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/entry_kernel.h
diff --git a/sync/syncable/entry_kernel.h b/sync/syncable/entry_kernel.h
index 1954da4a1d7044cdb4ec27ca7e7987cf2cc93798..383ffd71c00349b1136f3ea0fbc5a7474dd351a5 100644
--- a/sync/syncable/entry_kernel.h
+++ b/sync/syncable/entry_kernel.h
@@ -216,8 +216,7 @@ struct EntryKernel {
// Round-trip to proto time format and back so that we have
// consistent time resolutions (ms).
time_fields[field - TIME_FIELDS_BEGIN] =
- syncer::ProtoTimeToTime(
- syncer::TimeToProtoTime(value));
+ ProtoTimeToTime(TimeToProtoTime(value));
}
inline void put(IdField field, const Id& value) {
id_fields[field - ID_FIELDS_BEGIN] = value;
@@ -290,7 +289,7 @@ struct EntryKernel {
return id_fields[field - ID_FIELDS_BEGIN];
}
- syncer::ModelType GetServerModelType() const;
+ ModelType GetServerModelType() const;
// Dumps all kernel info into a DictionaryValue and returns it.
// Transfers ownership of the DictionaryValue to the caller.
@@ -307,8 +306,7 @@ struct EntryKernelMutation {
typedef std::map<int64, EntryKernelMutation> EntryKernelMutationMap;
-typedef syncer::Immutable<EntryKernelMutationMap>
- ImmutableEntryKernelMutationMap;
+typedef Immutable<EntryKernelMutationMap> ImmutableEntryKernelMutationMap;
// Caller owns the return value.
base::DictionaryValue* EntryKernelMutationToValue(
« no previous file with comments | « sync/syncable/entry.cc ('k') | sync/syncable/entry_kernel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698