OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 MOJO_SYSTEM_DISPATCHER_H_ | 5 #ifndef MOJO_EDK_SYSTEM_DISPATCHER_H_ |
6 #define MOJO_SYSTEM_DISPATCHER_H_ | 6 #define MOJO_EDK_SYSTEM_DISPATCHER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/synchronization/lock.h" | 16 #include "base/synchronization/lock.h" |
17 #include "mojo/embedder/platform_handle.h" | 17 #include "mojo/edk/embedder/platform_handle.h" |
18 #include "mojo/embedder/platform_handle_vector.h" | 18 #include "mojo/edk/embedder/platform_handle_vector.h" |
| 19 #include "mojo/edk/system/handle_signals_state.h" |
| 20 #include "mojo/edk/system/memory.h" |
| 21 #include "mojo/edk/system/system_impl_export.h" |
19 #include "mojo/public/c/system/buffer.h" | 22 #include "mojo/public/c/system/buffer.h" |
20 #include "mojo/public/c/system/data_pipe.h" | 23 #include "mojo/public/c/system/data_pipe.h" |
21 #include "mojo/public/c/system/message_pipe.h" | 24 #include "mojo/public/c/system/message_pipe.h" |
22 #include "mojo/public/c/system/types.h" | 25 #include "mojo/public/c/system/types.h" |
23 #include "mojo/system/handle_signals_state.h" | |
24 #include "mojo/system/memory.h" | |
25 #include "mojo/system/system_impl_export.h" | |
26 | 26 |
27 namespace mojo { | 27 namespace mojo { |
28 | 28 |
29 namespace embedder { | 29 namespace embedder { |
30 class PlatformSharedBufferMapping; | 30 class PlatformSharedBufferMapping; |
31 } | 31 } |
32 | 32 |
33 namespace system { | 33 namespace system { |
34 | 34 |
35 class Channel; | 35 class Channel; |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 : dispatcher_(dispatcher) {} | 395 : dispatcher_(dispatcher) {} |
396 | 396 |
397 Dispatcher* dispatcher_; | 397 Dispatcher* dispatcher_; |
398 | 398 |
399 // Copy and assign allowed. | 399 // Copy and assign allowed. |
400 }; | 400 }; |
401 | 401 |
402 } // namespace system | 402 } // namespace system |
403 } // namespace mojo | 403 } // namespace mojo |
404 | 404 |
405 #endif // MOJO_SYSTEM_DISPATCHER_H_ | 405 #endif // MOJO_EDK_SYSTEM_DISPATCHER_H_ |
OLD | NEW |