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

Unified Diff: sync/test/mock_invalidation_tracker.h

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.cc ('k') | sync/test/mock_invalidation_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/mock_invalidation_tracker.h
diff --git a/sync/test/mock_invalidation_tracker.h b/sync/test/mock_invalidation_tracker.h
index ee1f74060f6da6017f09f5298732d325512317fc..7a155220db60d249e7df30766119fde679995bd2 100644
--- a/sync/test/mock_invalidation_tracker.h
+++ b/sync/test/mock_invalidation_tracker.h
@@ -5,6 +5,8 @@
#ifndef SYNC_TEST_MOCK_INVALIDATION_TRACKER_H_
#define SYNC_TEST_MOCK_INVALIDATION_TRACKER_H_
+#include <stdint.h>
+
#include <set>
#include <string>
@@ -21,7 +23,7 @@ class MockInvalidationTracker {
// object.
scoped_ptr<TrackableMockInvalidation> IssueUnknownVersionInvalidation();
scoped_ptr<TrackableMockInvalidation> IssueInvalidation(
- int64 version,
+ int64_t version,
const std::string& payload);
MockInvalidationTracker();
« no previous file with comments | « sync/test/mock_invalidation.cc ('k') | sync/test/mock_invalidation_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698