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

Unified Diff: blimp/common/create_blimp_message.cc

Issue 1538253002: Switch to standard integer types in blimp/. (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 | « blimp/common/create_blimp_message.h ('k') | blimp/engine/browser/blimp_engine_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/create_blimp_message.cc
diff --git a/blimp/common/create_blimp_message.cc b/blimp/common/create_blimp_message.cc
index f656a73b92259f6375f46fb90e37e80014537e49..a765a8286c442b2f41da140161c2d97d58e5e2bc 100644
--- a/blimp/common/create_blimp_message.cc
+++ b/blimp/common/create_blimp_message.cc
@@ -91,7 +91,7 @@ scoped_ptr<BlimpMessage> CreateStartConnectionMessage(
return output;
}
-scoped_ptr<BlimpMessage> CreateCheckpointAckMessage(int64 checkpoint_id) {
+scoped_ptr<BlimpMessage> CreateCheckpointAckMessage(int64_t checkpoint_id) {
scoped_ptr<BlimpMessage> output(new BlimpMessage);
output->set_type(BlimpMessage::PROTOCOL_CONTROL);
« no previous file with comments | « blimp/common/create_blimp_message.h ('k') | blimp/engine/browser/blimp_engine_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698