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

Unified Diff: chrome/browser/sync/notifier/invalidation_util.cc

Issue 2970001: Updated cache-invalidation-api to @33. (Closed)
Patch Set: Fixed compile error Created 10 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 | « DEPS ('k') | third_party/cacheinvalidation/cacheinvalidation.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/notifier/invalidation_util.cc
diff --git a/chrome/browser/sync/notifier/invalidation_util.cc b/chrome/browser/sync/notifier/invalidation_util.cc
index f61a0db5727ed90fc23ddaaaf6b223251fdd4a0c..a5bc60a65d44f811f30bd3608ef233101a910ff1 100644
--- a/chrome/browser/sync/notifier/invalidation_util.cc
+++ b/chrome/browser/sync/notifier/invalidation_util.cc
@@ -61,9 +61,9 @@ std::string InvalidationToString(
ss << "components: { ";
const invalidation::ComponentStampLog& component_stamp_log =
invalidation.component_stamp_log();
- for (int i = 0; i < component_stamp_log.stamps_size(); ++i) {
+ for (int i = 0; i < component_stamp_log.stamp_size(); ++i) {
ghc 2010/07/09 21:59:40 It's probably not necessary to print these out at
const invalidation::ComponentStamp& component_stamp =
- component_stamp_log.stamps(i);
+ component_stamp_log.stamp(i);
ss << "component: " << component_stamp.component() << ", ";
ss << "time: " << component_stamp.time() << ", ";
}
« no previous file with comments | « DEPS ('k') | third_party/cacheinvalidation/cacheinvalidation.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698