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

Unified Diff: sync/internal_api/write_transaction.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/internal_api/write_node.cc ('k') | sync/js/js_test_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/write_transaction.cc
diff --git a/sync/internal_api/write_transaction.cc b/sync/internal_api/write_transaction.cc
index 5415564aca18700990111b0d41693d9ab5315bb8..8ae7f9bb0c7b90c1c368624c7bf6ee654de82cf7 100644
--- a/sync/internal_api/write_transaction.cc
+++ b/sync/internal_api/write_transaction.cc
@@ -4,6 +4,8 @@
#include "sync/internal_api/public/write_transaction.h"
+#include <stdint.h>
+
#include "sync/syncable/directory.h"
#include "sync/syncable/mutable_entry.h"
#include "sync/syncable/syncable_write_transaction.h"
@@ -22,9 +24,8 @@ WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here,
WriteTransaction::WriteTransaction(const tracked_objects::Location& from_here,
UserShare* share,
- int64* new_model_version)
- : BaseTransaction(share),
- transaction_(NULL) {
+ int64_t* new_model_version)
+ : BaseTransaction(share), transaction_(NULL) {
transaction_ = new syncable::WriteTransaction(from_here,
share->directory.get(),
new_model_version);
« no previous file with comments | « sync/internal_api/write_node.cc ('k') | sync/js/js_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698