| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_EDK_SYSTEM_IPC_SUPPORT_H_ | 5 #ifndef MOJO_EDK_SYSTEM_IPC_SUPPORT_H_ |
| 6 #define MOJO_EDK_SYSTEM_IPC_SUPPORT_H_ | 6 #define MOJO_EDK_SYSTEM_IPC_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <functional> | 8 #include <functional> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "base/gtest_prod_util.h" | |
| 12 #include "mojo/edk/embedder/process_type.h" | 11 #include "mojo/edk/embedder/process_type.h" |
| 13 #include "mojo/edk/embedder/slave_info.h" | 12 #include "mojo/edk/embedder/slave_info.h" |
| 14 #include "mojo/edk/platform/scoped_platform_handle.h" | 13 #include "mojo/edk/platform/scoped_platform_handle.h" |
| 15 #include "mojo/edk/platform/task_runner.h" | 14 #include "mojo/edk/platform/task_runner.h" |
| 16 #include "mojo/edk/system/channel_id.h" | 15 #include "mojo/edk/system/channel_id.h" |
| 17 #include "mojo/edk/system/connection_identifier.h" | 16 #include "mojo/edk/system/connection_identifier.h" |
| 18 #include "mojo/edk/system/process_identifier.h" | 17 #include "mojo/edk/system/process_identifier.h" |
| 18 #include "mojo/edk/util/gtest_prod_utils.h" |
| 19 #include "mojo/edk/util/ref_ptr.h" | 19 #include "mojo/edk/util/ref_ptr.h" |
| 20 #include "mojo/public/cpp/system/macros.h" | 20 #include "mojo/public/cpp/system/macros.h" |
| 21 | 21 |
| 22 namespace mojo { | 22 namespace mojo { |
| 23 | 23 |
| 24 namespace embedder { | 24 namespace embedder { |
| 25 class PlatformSupport; | 25 class PlatformSupport; |
| 26 class ProcessDelegate; | 26 class ProcessDelegate; |
| 27 } | 27 } |
| 28 | 28 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 std::unique_ptr<ConnectionManager> connection_manager_; | 179 std::unique_ptr<ConnectionManager> connection_manager_; |
| 180 std::unique_ptr<ChannelManager> channel_manager_; | 180 std::unique_ptr<ChannelManager> channel_manager_; |
| 181 | 181 |
| 182 MOJO_DISALLOW_COPY_AND_ASSIGN(IPCSupport); | 182 MOJO_DISALLOW_COPY_AND_ASSIGN(IPCSupport); |
| 183 }; | 183 }; |
| 184 | 184 |
| 185 } // namespace system | 185 } // namespace system |
| 186 } // namespace mojo | 186 } // namespace mojo |
| 187 | 187 |
| 188 #endif // MOJO_EDK_SYSTEM_IPC_SUPPORT_H_ | 188 #endif // MOJO_EDK_SYSTEM_IPC_SUPPORT_H_ |
| OLD | NEW |