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 SHELL_CHILD_PROCESS_HOST_H_ | 5 #ifndef SHELL_CHILD_PROCESS_HOST_H_ |
6 #define SHELL_CHILD_PROCESS_HOST_H_ | 6 #define SHELL_CHILD_PROCESS_HOST_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/process/process_handle.h" | 9 #include "base/process/process.h" |
10 #include "mojo/edk/embedder/platform_channel_pair.h" | 10 #include "mojo/edk/embedder/platform_channel_pair.h" |
11 #include "mojo/edk/embedder/scoped_platform_handle.h" | 11 #include "mojo/edk/embedder/scoped_platform_handle.h" |
12 #include "shell/child_process.h" // For |ChildProcess::Type|. | 12 #include "shell/child_process.h" // For |ChildProcess::Type|. |
13 | 13 |
14 namespace mojo { | 14 namespace mojo { |
15 namespace shell { | 15 namespace shell { |
16 | 16 |
17 class Context; | 17 class Context; |
18 | 18 |
19 // (Base) class for a "child process host". Handles launching and connecting a | 19 // (Base) class for a "child process host". Handles launching and connecting a |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 Context* context() const { return context_; } | 58 Context* context() const { return context_; } |
59 | 59 |
60 private: | 60 private: |
61 bool DoLaunch(); | 61 bool DoLaunch(); |
62 void DidLaunch(bool success); | 62 void DidLaunch(bool success); |
63 | 63 |
64 Context* const context_; | 64 Context* const context_; |
65 Delegate* const delegate_; | 65 Delegate* const delegate_; |
66 const ChildProcess::Type type_; | 66 const ChildProcess::Type type_; |
67 | 67 |
68 base::ProcessHandle child_process_handle_; | 68 base::Process child_process_; |
69 | 69 |
70 embedder::PlatformChannelPair platform_channel_pair_; | 70 embedder::PlatformChannelPair platform_channel_pair_; |
71 | 71 |
72 // Platform-specific "pipe" to the child process. Valid immediately after | 72 // Platform-specific "pipe" to the child process. Valid immediately after |
73 // creation. | 73 // creation. |
74 embedder::ScopedPlatformHandle platform_channel_; | 74 embedder::ScopedPlatformHandle platform_channel_; |
75 | 75 |
76 DISALLOW_COPY_AND_ASSIGN(ChildProcessHost); | 76 DISALLOW_COPY_AND_ASSIGN(ChildProcessHost); |
77 }; | 77 }; |
78 | 78 |
79 } // namespace shell | 79 } // namespace shell |
80 } // namespace mojo | 80 } // namespace mojo |
81 | 81 |
82 #endif // SHELL_CHILD_PROCESS_HOST_H_ | 82 #endif // SHELL_CHILD_PROCESS_HOST_H_ |
OLD | NEW |