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

Side by Side Diff: ipc/ipc_sync_message.h

Issue 1342153003: ipc: Remove basictypes.h includes. (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 unified diff | Download patch
« no previous file with comments | « ipc/ipc_sync_channel_unittest.cc ('k') | ipc/ipc_sync_message_filter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IPC_IPC_SYNC_MESSAGE_H_ 5 #ifndef IPC_IPC_SYNC_MESSAGE_H_
6 #define IPC_IPC_SYNC_MESSAGE_H_ 6 #define IPC_IPC_SYNC_MESSAGE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #if defined(OS_WIN) 9 #if defined(OS_WIN)
10 #include <windows.h> 10 #include <windows.h>
11 #endif 11 #endif
12
12 #include <string> 13 #include <string>
13 #include "base/basictypes.h" 14
14 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
15 #include "ipc/ipc_message.h" 16 #include "ipc/ipc_message.h"
16 17
17 namespace base { 18 namespace base {
18 class WaitableEvent; 19 class WaitableEvent;
19 } 20 }
20 21
21 namespace IPC { 22 namespace IPC {
22 23
23 class MessageReplyDeserializer; 24 class MessageReplyDeserializer;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 : id(id), deserializer(d), done_event(e), send_result(false) { } 106 : id(id), deserializer(d), done_event(e), send_result(false) { }
106 int id; 107 int id;
107 MessageReplyDeserializer* deserializer; 108 MessageReplyDeserializer* deserializer;
108 base::WaitableEvent* done_event; 109 base::WaitableEvent* done_event;
109 bool send_result; 110 bool send_result;
110 }; 111 };
111 112
112 } // namespace IPC 113 } // namespace IPC
113 114
114 #endif // IPC_IPC_SYNC_MESSAGE_H_ 115 #endif // IPC_IPC_SYNC_MESSAGE_H_
OLDNEW
« no previous file with comments | « ipc/ipc_sync_channel_unittest.cc ('k') | ipc/ipc_sync_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698