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

Unified Diff: ipc/ipc_sync_message.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: REBASE 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
« no previous file with comments | « ipc/ipc_sync_message.h ('k') | ipc/ipc_test_channel_listener.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_sync_message.cc
diff --git a/ipc/ipc_sync_message.cc b/ipc/ipc_sync_message.cc
index 6b59e11b49fe7cb8bf4711e962c45e9615d59240..8a770b17a1f407382938562ffcee4210a3076e66 100644
--- a/ipc/ipc_sync_message.cc
+++ b/ipc/ipc_sync_message.cc
@@ -2,18 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "build/build_config.h"
+#include "ipc/ipc_sync_message.h"
-#if defined(OS_WIN)
-#include <windows.h>
-#endif
#include <stack>
#include "base/atomic_sequence_num.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/synchronization/waitable_event.h"
-#include "ipc/ipc_sync_message.h"
+#include "build/build_config.h"
namespace {
@@ -36,15 +33,13 @@ namespace IPC {
#define kSyncMessageHeaderSize 4
-SyncMessage::SyncMessage(
- int32 routing_id,
- uint32 type,
- PriorityValue priority,
- MessageReplyDeserializer* deserializer)
+SyncMessage::SyncMessage(int32_t routing_id,
+ uint32_t type,
+ PriorityValue priority,
+ MessageReplyDeserializer* deserializer)
: Message(routing_id, type, priority),
deserializer_(deserializer),
- pump_messages_event_(NULL)
- {
+ pump_messages_event_(NULL) {
set_sync();
set_unblock(true);
« no previous file with comments | « ipc/ipc_sync_message.h ('k') | ipc/ipc_test_channel_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698