| 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_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ | 5 #ifndef MOJO_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ |
| 6 #define MOJO_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ | 6 #define MOJO_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/callback.h" | 10 #include "base/callback.h" |
| 9 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 10 #include "base/macros.h" | 12 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 12 #include "mojo/shell/native_runner.h" | 14 #include "mojo/shell/native_runner.h" |
| 13 | 15 |
| 14 namespace base { | 16 namespace base { |
| 15 class TaskRunner; | 17 class TaskRunner; |
| 16 } | 18 } |
| 17 | 19 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 private: | 65 private: |
| 64 base::TaskRunner* const launch_process_runner_; | 66 base::TaskRunner* const launch_process_runner_; |
| 65 | 67 |
| 66 DISALLOW_COPY_AND_ASSIGN(OutOfProcessNativeRunnerFactory); | 68 DISALLOW_COPY_AND_ASSIGN(OutOfProcessNativeRunnerFactory); |
| 67 }; | 69 }; |
| 68 | 70 |
| 69 } // namespace runner | 71 } // namespace runner |
| 70 } // namespace mojo | 72 } // namespace mojo |
| 71 | 73 |
| 72 #endif // MOJO_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ | 74 #endif // MOJO_RUNNER_HOST_OUT_OF_PROCESS_NATIVE_RUNNER_H_ |
| OLD | NEW |