summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_channel.cc
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-09-04 11:47:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-09-04 18:48:36 +0000
commit10a5c06e17cca35135ee29556c2c139393f42c43 (patch)
treeb27c8174d94724329b622fcf4978d9bfab615571 /ipc/ipc_sync_channel.cc
parent28bf86ee01379564978c4392bb7f4adc03d3b41a (diff)
downloadchromium_src-10a5c06e17cca35135ee29556c2c139393f42c43.zip
chromium_src-10a5c06e17cca35135ee29556c2c139393f42c43.tar.gz
chromium_src-10a5c06e17cca35135ee29556c2c139393f42c43.tar.bz2
ipc: Convert int types from basictypes.h to the ones from stdint.h
Now that the supported toolchain has stdint.h, use the integer types from this standard header file. BUG=138542 TEST=ipc_tests R=tsepez@chromium.org TBR=sadrul@chromium.org # for ui/ Review URL: https://codereview.chromium.org/1322253003 Cr-Commit-Position: refs/heads/master@{#347457}
Diffstat (limited to 'ipc/ipc_sync_channel.cc')
-rw-r--r--ipc/ipc_sync_channel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_sync_channel.cc b/ipc/ipc_sync_channel.cc
index 04ebd41..3cab9ad 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_;