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

Side by Side Diff: chrome/nacl/nacl_ipc_adapter.h

Issue 11308082: ipc: Remove ipc_listener.h from ipc_channel.h and update the files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/nacl/nacl_broker_listener.cc ('k') | chrome/nacl/nacl_ipc_adapter.cc » ('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 CHROME_NACL_NACL_IPC_ADAPTER_H_ 5 #ifndef CHROME_NACL_NACL_IPC_ADAPTER_H_
6 #define CHROME_NACL_NACL_IPC_ADAPTER_H_ 6 #define CHROME_NACL_NACL_IPC_ADAPTER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/scoped_vector.h" 15 #include "base/memory/scoped_vector.h"
16 #include "base/pickle.h"
16 #include "base/shared_memory.h" 17 #include "base/shared_memory.h"
17 #include "base/synchronization/condition_variable.h" 18 #include "base/synchronization/condition_variable.h"
18 #include "base/synchronization/lock.h" 19 #include "base/synchronization/lock.h"
19 #include "base/task_runner.h" 20 #include "base/task_runner.h"
20 #include "ipc/ipc_channel.h" 21 #include "ipc/ipc_listener.h"
21 #include "ipc/ipc_message.h"
22 22
23 struct NaClDesc; 23 struct NaClDesc;
24 struct NaClImcTypedMsgHdr; 24 struct NaClImcTypedMsgHdr;
25 struct PP_Size; 25 struct PP_Size;
26 26
27 namespace IPC { 27 namespace IPC {
28 class Message; 28 class Channel;
29 struct ChannelHandle;
29 } 30 }
30 31
31 namespace nacl { 32 namespace nacl {
32 class DescWrapper; 33 class DescWrapper;
33 } 34 }
34 35
35 namespace ppapi { 36 namespace ppapi {
36 class HostResource; 37 class HostResource;
37 } 38 }
38 39
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 // To be accessed inside of lock_ only. 185 // To be accessed inside of lock_ only.
185 LockedData locked_data_; 186 LockedData locked_data_;
186 187
187 // To be accessed on the I/O thread (via task runner) only. 188 // To be accessed on the I/O thread (via task runner) only.
188 IOThreadData io_thread_data_; 189 IOThreadData io_thread_data_;
189 190
190 DISALLOW_COPY_AND_ASSIGN(NaClIPCAdapter); 191 DISALLOW_COPY_AND_ASSIGN(NaClIPCAdapter);
191 }; 192 };
192 193
193 #endif // CHROME_NACL_NACL_IPC_ADAPTER_H_ 194 #endif // CHROME_NACL_NACL_IPC_ADAPTER_H_
OLDNEW
« no previous file with comments | « chrome/nacl/nacl_broker_listener.cc ('k') | chrome/nacl/nacl_ipc_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698