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

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: 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_message.cc
diff --git a/ipc/ipc_sync_message.cc b/ipc/ipc_sync_message.cc
index 6b59e11b49fe7cb8bf4711e962c45e9615d59240..39bf34abbc22996edf75e05257477aa8f9efc5bd 100644
--- a/ipc/ipc_sync_message.cc
+++ b/ipc/ipc_sync_message.cc
@@ -2,18 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "ipc/ipc_sync_message.h"
+
#include "build/build_config.h"
Tom Sepez 2015/09/03 19:53:09 nit: this needs to move down and be alphabetized.
tfarina 2015/09/04 14:01:14 Done.
-#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"
namespace {
@@ -36,15 +34,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);

Powered by Google App Engine
This is Rietveld 408576698