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

Unified Diff: chrome/browser/sync/test/integration/sync_test.cc

Issue 19381005: Add version field to syncer::Invalidation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
Index: chrome/browser/sync/test/integration/sync_test.cc
diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc
index 8d75d64187c33b2445bb1915d2933771a3d94a0a..95e636da9e746597805f8d71eab3bf47550299b9 100644
--- a/chrome/browser/sync/test/integration/sync_test.cc
+++ b/chrome/browser/sync/test/integration/sync_test.cc
@@ -671,7 +671,9 @@ void SyncTest::TriggerNotification(syncer::ModelTypeSet changed_types) {
"from_server",
syncer::NOTIFY_ALL,
syncer::ObjectIdSetToInvalidationMap(
- syncer::ModelTypeSetToObjectIdSet(changed_types), std::string())
+ syncer::ModelTypeSetToObjectIdSet(changed_types),
+ syncer::Invalidation::UNKNOWN_VERSION,
rlarocque 2013/07/16 18:33:16 kUnknownVersion?
Steve Condie 2013/07/16 21:23:06 Thanks. Missed this because I didn't build the syn
rlarocque 2013/07/16 21:33:37 The existence of sync_endtoend_tests is news to me
Steve Condie 2013/07/16 21:49:47 Done.
+ std::string())
).ToString();
const std::string& path =
std::string("chromiumsync/sendnotification?channel=") +

Powered by Google App Engine
This is Rietveld 408576698