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

Unified Diff: sync/internal_api/change_record.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/internal_api/base_transaction.cc ('k') | sync/internal_api/change_reorder_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/change_record.cc
diff --git a/sync/internal_api/change_record.cc b/sync/internal_api/change_record.cc
index b956c9b0703d0295a126d937014a13d74988dfa3..7e50e602e27308b929725b8342c75f2b1a140ba9 100644
--- a/sync/internal_api/change_record.cc
+++ b/sync/internal_api/change_record.cc
@@ -41,8 +41,7 @@ DictionaryValue* ChangeRecord::ToValue() const {
if (extra.get()) {
value->Set("extra", extra->ToValue());
}
- value->Set("specifics",
- syncer::EntitySpecificsToValue(specifics));
+ value->Set("specifics", EntitySpecificsToValue(specifics));
}
return value;
}
@@ -57,7 +56,7 @@ ExtraPasswordChangeRecordData::ExtraPasswordChangeRecordData(
ExtraPasswordChangeRecordData::~ExtraPasswordChangeRecordData() {}
DictionaryValue* ExtraPasswordChangeRecordData::ToValue() const {
- return syncer::PasswordSpecificsDataToValue(unencrypted_);
+ return PasswordSpecificsDataToValue(unencrypted_);
}
const sync_pb::PasswordSpecificsData&
« no previous file with comments | « sync/internal_api/base_transaction.cc ('k') | sync/internal_api/change_reorder_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698