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

Unified Diff: blimp/net/blimp_message_output_buffer.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/net/blimp_message_output_buffer.h ('k') | blimp/net/blimp_message_output_buffer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/blimp_message_output_buffer.cc
diff --git a/blimp/net/blimp_message_output_buffer.cc b/blimp/net/blimp_message_output_buffer.cc
index c599ffaff4f1f5ab6a7e1d04c9c102a41dadf9cc..77fc3df5d409fbdd8a150cfd71fa99c7e2abdf09 100644
--- a/blimp/net/blimp_message_output_buffer.cc
+++ b/blimp/net/blimp_message_output_buffer.cc
@@ -76,7 +76,7 @@ void BlimpMessageOutputBuffer::ProcessMessage(
// Flushes acknowledged messages from the buffer and invokes their
// |callbacks|, if any.
-void BlimpMessageOutputBuffer::OnMessageCheckpoint(int64 message_id) {
+void BlimpMessageOutputBuffer::OnMessageCheckpoint(int64_t message_id) {
VLOG(2) << "OnMessageCheckpoint (message_id=" << message_id << ")";
if (ack_buffer_.empty()) {
LOG(WARNING) << "Checkpoint called while buffer is empty.";
« no previous file with comments | « blimp/net/blimp_message_output_buffer.h ('k') | blimp/net/blimp_message_output_buffer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698