OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_EMBEDDER_PLATFORM_CHANNEL_PAIR_H_ | 5 #ifndef MOJO_EDK_EMBEDDER_PLATFORM_CHANNEL_PAIR_H_ |
6 #define MOJO_EDK_EMBEDDER_PLATFORM_CHANNEL_PAIR_H_ | 6 #define MOJO_EDK_EMBEDDER_PLATFORM_CHANNEL_PAIR_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | |
9 #include "base/process/launch.h" | 8 #include "base/process/launch.h" |
10 #include "mojo/edk/embedder/scoped_platform_handle.h" | 9 #include "mojo/edk/embedder/scoped_platform_handle.h" |
11 #include "mojo/edk/system/system_impl_export.h" | 10 #include "mojo/edk/system/system_impl_export.h" |
12 #include "mojo/public/cpp/system/macros.h" | 11 #include "mojo/public/cpp/system/macros.h" |
13 | 12 |
14 namespace base { | 13 namespace base { |
15 class CommandLine; | 14 class CommandLine; |
16 } | 15 } |
17 | 16 |
18 namespace mojo { | 17 namespace mojo { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 ScopedPlatformHandle server_handle_; | 75 ScopedPlatformHandle server_handle_; |
77 ScopedPlatformHandle client_handle_; | 76 ScopedPlatformHandle client_handle_; |
78 | 77 |
79 MOJO_DISALLOW_COPY_AND_ASSIGN(PlatformChannelPair); | 78 MOJO_DISALLOW_COPY_AND_ASSIGN(PlatformChannelPair); |
80 }; | 79 }; |
81 | 80 |
82 } // namespace embedder | 81 } // namespace embedder |
83 } // namespace mojo | 82 } // namespace mojo |
84 | 83 |
85 #endif // MOJO_EDK_EMBEDDER_PLATFORM_CHANNEL_PAIR_H_ | 84 #endif // MOJO_EDK_EMBEDDER_PLATFORM_CHANNEL_PAIR_H_ |
OLD | NEW |