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

Unified Diff: sync/test/mock_invalidation_tracker.cc

Issue 1545553003: Switch to standard integer types in sync/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/test/mock_invalidation_tracker.h ('k') | sync/test/null_directory_change_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/mock_invalidation_tracker.cc
diff --git a/sync/test/mock_invalidation_tracker.cc b/sync/test/mock_invalidation_tracker.cc
index 6e816a63e1694f80440a0c79a6b64d5c4eb754db..3c3a498e1572821b23ef95a642490b36d0495dd5 100644
--- a/sync/test/mock_invalidation_tracker.cc
+++ b/sync/test/mock_invalidation_tracker.cc
@@ -4,6 +4,8 @@
#include "sync/test/mock_invalidation_tracker.h"
+#include <stdint.h>
+
#include "base/logging.h"
#include "sync/test/trackable_mock_invalidation.h"
@@ -16,7 +18,7 @@ MockInvalidationTracker::IssueUnknownVersionInvalidation() {
}
scoped_ptr<TrackableMockInvalidation>
-MockInvalidationTracker::IssueInvalidation(int64 version,
+MockInvalidationTracker::IssueInvalidation(int64_t version,
const std::string& payload) {
return scoped_ptr<TrackableMockInvalidation>(
new TrackableMockInvalidation(false, version, payload, this, next_id_++));
« no previous file with comments | « sync/test/mock_invalidation_tracker.h ('k') | sync/test/null_directory_change_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698