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

Unified Diff: sync/internal_api/js_mutation_event_observer.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
Index: sync/internal_api/js_mutation_event_observer.cc
diff --git a/sync/internal_api/js_mutation_event_observer.cc b/sync/internal_api/js_mutation_event_observer.cc
index b40693b8b29084fffed4feb7ce08d2f7a8d7b173..857d723e39e7cac6765b3707238a83b679d5bdbc 100644
--- a/sync/internal_api/js_mutation_event_observer.cc
+++ b/sync/internal_api/js_mutation_event_observer.cc
@@ -4,6 +4,9 @@
#include "sync/internal_api/js_mutation_event_observer.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
#include "base/location.h"
@@ -45,7 +48,7 @@ const size_t kChangeLimit = 100;
void JsMutationEventObserver::OnChangesApplied(
ModelType model_type,
- int64 write_transaction_id,
+ int64_t write_transaction_id,
const ImmutableChangeRecordList& changes) {
if (!event_handler_.IsInitialized()) {
return;
« no previous file with comments | « sync/internal_api/js_mutation_event_observer.h ('k') | sync/internal_api/js_mutation_event_observer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698