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

Unified Diff: ipc/ipc_sync_channel.cc

Issue 1322253003: ipc: Convert int types from basictypes.h to the ones from stdint.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months 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: ipc/ipc_sync_channel.cc
diff --git a/ipc/ipc_sync_channel.cc b/ipc/ipc_sync_channel.cc
index 04ebd4177ef857c466c8fb85c994f6a1facc2c5a..3cab9ad24151213bb5997ccada451bac68f0bb13 100644
--- a/ipc/ipc_sync_channel.cc
+++ b/ipc/ipc_sync_channel.cc
@@ -96,7 +96,7 @@ class SyncChannel::ReceivedSyncMsgQueue :
void DispatchMessages(SyncContext* dispatching_context) {
bool first_time = true;
- uint32 expected_version = 0;
+ uint32_t expected_version = 0;
SyncMessageQueue::iterator it;
while (true) {
Message* message = NULL;
@@ -204,7 +204,7 @@ class SyncChannel::ReceivedSyncMsgQueue :
typedef std::list<QueuedMessage> SyncMessageQueue;
SyncMessageQueue message_queue_;
- uint32 message_queue_version_; // Used to signal DispatchMessages to rescan
+ uint32_t message_queue_version_; // Used to signal DispatchMessages to rescan
std::vector<QueuedMessage> received_replies_;

Powered by Google App Engine
This is Rietveld 408576698