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

Unified Diff: blimp/net/blimp_message_checkpoint_observer.h

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/engine/ui/blimp_ui_context_factory.cc ('k') | blimp/net/blimp_message_checkpointer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/blimp_message_checkpoint_observer.h
diff --git a/blimp/net/blimp_message_checkpoint_observer.h b/blimp/net/blimp_message_checkpoint_observer.h
index 890819c5fdeb9d1f8b80b7b9ea81f9ac0af02106..f2735a455c4ddb468961359f4a7850c1c2c41df2 100644
--- a/blimp/net/blimp_message_checkpoint_observer.h
+++ b/blimp/net/blimp_message_checkpoint_observer.h
@@ -5,7 +5,7 @@
#ifndef BLIMP_NET_BLIMP_MESSAGE_CHECKPOINT_OBSERVER_H_
#define BLIMP_NET_BLIMP_MESSAGE_CHECKPOINT_OBSERVER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
namespace blimp {
@@ -16,7 +16,7 @@ class BlimpMessageCheckpointObserver {
// Invoked when the remote end has positively acknowledged the receipt of all
// messages with ID <= |message_id|.
- virtual void OnMessageCheckpoint(int64 message_id) = 0;
+ virtual void OnMessageCheckpoint(int64_t message_id) = 0;
};
} // namespace blimp
« no previous file with comments | « blimp/engine/ui/blimp_ui_context_factory.cc ('k') | blimp/net/blimp_message_checkpointer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698