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 #include "services/shell/runner/host/out_of_process_native_runner.h" | 5 #include "services/shell/runner/host/out_of_process_native_runner.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 OutOfProcessNativeRunner::OutOfProcessNativeRunner( | 23 OutOfProcessNativeRunner::OutOfProcessNativeRunner( |
24 base::TaskRunner* launch_process_runner, | 24 base::TaskRunner* launch_process_runner, |
25 NativeRunnerDelegate* delegate) | 25 NativeRunnerDelegate* delegate) |
26 : launch_process_runner_(launch_process_runner), delegate_(delegate) {} | 26 : launch_process_runner_(launch_process_runner), delegate_(delegate) {} |
27 | 27 |
28 OutOfProcessNativeRunner::~OutOfProcessNativeRunner() { | 28 OutOfProcessNativeRunner::~OutOfProcessNativeRunner() { |
29 if (child_process_host_ && !app_path_.empty()) | 29 if (child_process_host_ && !app_path_.empty()) |
30 child_process_host_->Join(); | 30 child_process_host_->Join(); |
31 } | 31 } |
32 | 32 |
33 mojom::ShellClientPtr OutOfProcessNativeRunner::Start( | 33 mojom::ServicePtr OutOfProcessNativeRunner::Start( |
34 const base::FilePath& app_path, | 34 const base::FilePath& app_path, |
35 const Identity& target, | 35 const Identity& target, |
36 bool start_sandboxed, | 36 bool start_sandboxed, |
37 const base::Callback<void(base::ProcessId)>& pid_available_callback, | 37 const base::Callback<void(base::ProcessId)>& pid_available_callback, |
38 const base::Closure& app_completed_callback) { | 38 const base::Closure& app_completed_callback) { |
39 app_path_ = app_path; | 39 app_path_ = app_path; |
40 | 40 |
41 DCHECK(app_completed_callback_.is_null()); | 41 DCHECK(app_completed_callback_.is_null()); |
42 app_completed_callback_ = app_completed_callback; | 42 app_completed_callback_ = app_completed_callback; |
43 | 43 |
(...skipping 22 matching lines...) Expand all Loading... |
66 : launch_process_runner_(launch_process_runner), delegate_(delegate) {} | 66 : launch_process_runner_(launch_process_runner), delegate_(delegate) {} |
67 OutOfProcessNativeRunnerFactory::~OutOfProcessNativeRunnerFactory() {} | 67 OutOfProcessNativeRunnerFactory::~OutOfProcessNativeRunnerFactory() {} |
68 | 68 |
69 std::unique_ptr<NativeRunner> OutOfProcessNativeRunnerFactory::Create( | 69 std::unique_ptr<NativeRunner> OutOfProcessNativeRunnerFactory::Create( |
70 const base::FilePath& app_path) { | 70 const base::FilePath& app_path) { |
71 return base::WrapUnique( | 71 return base::WrapUnique( |
72 new OutOfProcessNativeRunner(launch_process_runner_, delegate_)); | 72 new OutOfProcessNativeRunner(launch_process_runner_, delegate_)); |
73 } | 73 } |
74 | 74 |
75 } // namespace shell | 75 } // namespace shell |
OLD | NEW |