Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: services/shell/runner/host/out_of_process_native_runner.cc

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « services/shell/runner/host/out_of_process_native_runner.h ('k') | services/shell/runner/init.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "mojo/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
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/callback_helpers.h" 12 #include "base/callback_helpers.h"
13 #include "base/files/file_util.h" 13 #include "base/files/file_util.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/task_runner.h" 15 #include "base/task_runner.h"
16 #include "mojo/shell/runner/common/client_util.h" 16 #include "services/shell/runner/common/client_util.h"
17 #include "mojo/shell/runner/host/child_process_host.h" 17 #include "services/shell/runner/host/child_process_host.h"
18 #include "mojo/shell/runner/host/in_process_native_runner.h" 18 #include "services/shell/runner/host/in_process_native_runner.h"
19 19
20 namespace mojo { 20 namespace mojo {
21 namespace shell { 21 namespace shell {
22 22
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() {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 OutOfProcessNativeRunnerFactory::~OutOfProcessNativeRunnerFactory() {} 67 OutOfProcessNativeRunnerFactory::~OutOfProcessNativeRunnerFactory() {}
68 68
69 scoped_ptr<shell::NativeRunner> OutOfProcessNativeRunnerFactory::Create( 69 scoped_ptr<shell::NativeRunner> OutOfProcessNativeRunnerFactory::Create(
70 const base::FilePath& app_path) { 70 const base::FilePath& app_path) {
71 return make_scoped_ptr( 71 return make_scoped_ptr(
72 new OutOfProcessNativeRunner(launch_process_runner_, delegate_)); 72 new OutOfProcessNativeRunner(launch_process_runner_, delegate_));
73 } 73 }
74 74
75 } // namespace shell 75 } // namespace shell
76 } // namespace mojo 76 } // namespace mojo
OLDNEW
« no previous file with comments | « services/shell/runner/host/out_of_process_native_runner.h ('k') | services/shell/runner/init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698