| 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 SERVICES_SHELL_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ | 5 #ifndef SERVICES_SERVICE_MANAGER_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ |
| 6 #define SERVICES_SHELL_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ | 6 #define SERVICES_SERVICE_MANAGER_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "services/shell/native_runner.h" | 16 #include "services/service_manager/native_runner.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class TaskRunner; | 19 class TaskRunner; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace shell { | 22 namespace shell { |
| 23 | 23 |
| 24 class ChildProcessHost; | 24 class ChildProcessHost; |
| 25 class NativeRunnerDelegate; | 25 class NativeRunnerDelegate; |
| 26 | 26 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 private: | 65 private: |
| 66 base::TaskRunner* const launch_process_runner_; | 66 base::TaskRunner* const launch_process_runner_; |
| 67 NativeRunnerDelegate* delegate_; | 67 NativeRunnerDelegate* delegate_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(OutOfProcessNativeRunnerFactory); | 69 DISALLOW_COPY_AND_ASSIGN(OutOfProcessNativeRunnerFactory); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace shell | 72 } // namespace shell |
| 73 | 73 |
| 74 #endif // SERVICES_SHELL_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ | 74 #endif // SERVICES_SERVICE_MANAGER_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ |
| OLD | NEW |