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

Unified Diff: sync/internal_api/change_record.cc

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 6 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.h » ('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 231fe4237d7e4577ef9a1100b50874757a4cc438..d75b903a59368e1c70a992732328530687b9e32d 100644
--- a/sync/internal_api/change_record.cc
+++ b/sync/internal_api/change_record.cc
@@ -10,7 +10,7 @@
#include "sync/internal_api/public/read_node.h"
#include "sync/protocol/proto_value_conversions.h"
-namespace csync {
+namespace syncer {
ChangeRecord::ChangeRecord()
: id(kInvalidId), action(ACTION_ADD) {}
@@ -42,7 +42,7 @@ DictionaryValue* ChangeRecord::ToValue() const {
value->Set("extra", extra->ToValue());
}
value->Set("specifics",
- csync::EntitySpecificsToValue(specifics));
+ syncer::EntitySpecificsToValue(specifics));
}
return value;
}
@@ -57,7 +57,7 @@ ExtraPasswordChangeRecordData::ExtraPasswordChangeRecordData(
ExtraPasswordChangeRecordData::~ExtraPasswordChangeRecordData() {}
DictionaryValue* ExtraPasswordChangeRecordData::ToValue() const {
- return csync::PasswordSpecificsDataToValue(unencrypted_);
+ return syncer::PasswordSpecificsDataToValue(unencrypted_);
}
const sync_pb::PasswordSpecificsData&
@@ -65,5 +65,5 @@ const sync_pb::PasswordSpecificsData&
return unencrypted_;
}
-} // namespace csync
+} // namespace syncer
« no previous file with comments | « sync/internal_api/base_transaction.cc ('k') | sync/internal_api/change_reorder_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698