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

Unified Diff: sync/notifier/object_id_payload_map.cc

Issue 10828158: [Sync] Address msw's comments for r149747 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address nits Created 8 years, 4 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/notifier/object_id_payload_map.h ('k') | sync/notifier/sync_notifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/notifier/object_id_payload_map.cc
diff --git a/sync/notifier/object_id_payload_map.cc b/sync/notifier/object_id_payload_map.cc
index 19eed0c197d0af861c95843b7a47222e3f17b497..7fa1f7cac35860b216912ffb6bb48a9a7593f13d 100644
--- a/sync/notifier/object_id_payload_map.cc
+++ b/sync/notifier/object_id_payload_map.cc
@@ -16,8 +16,8 @@ ObjectIdSet ObjectIdPayloadMapToSet(
return ids;
}
-ObjectIdPayloadMap ObjectIdSetToPayloadMap(
- ObjectIdSet ids, const std::string& payload) {
+ObjectIdPayloadMap ObjectIdSetToPayloadMap(ObjectIdSet ids,
+ const std::string& payload) {
ObjectIdPayloadMap id_payloads;
for (ObjectIdSet::const_iterator it = ids.begin(); it != ids.end(); ++it) {
id_payloads[*it] = payload;
« no previous file with comments | « sync/notifier/object_id_payload_map.h ('k') | sync/notifier/sync_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698