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

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

Issue 1965083003: Fix include path for moved thread_task_runner_handle.h header in services/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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
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 "services/shell/runner/host/child_process.h" 5 #include "services/shell/runner/host/child_process.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/base_switches.h" 12 #include "base/base_switches.h"
13 #include "base/bind.h" 13 #include "base/bind.h"
14 #include "base/callback_helpers.h" 14 #include "base/callback_helpers.h"
15 #include "base/command_line.h" 15 #include "base/command_line.h"
16 #include "base/debug/stack_trace.h" 16 #include "base/debug/stack_trace.h"
17 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
18 #include "base/i18n/icu_util.h" 18 #include "base/i18n/icu_util.h"
19 #include "base/location.h" 19 #include "base/location.h"
20 #include "base/logging.h" 20 #include "base/logging.h"
21 #include "base/macros.h" 21 #include "base/macros.h"
22 #include "base/memory/ref_counted.h" 22 #include "base/memory/ref_counted.h"
23 #include "base/message_loop/message_loop.h" 23 #include "base/message_loop/message_loop.h"
24 #include "base/single_thread_task_runner.h" 24 #include "base/single_thread_task_runner.h"
25 #include "base/synchronization/waitable_event.h" 25 #include "base/synchronization/waitable_event.h"
26 #include "base/thread_task_runner_handle.h"
27 #include "base/threading/thread.h" 26 #include "base/threading/thread.h"
28 #include "base/threading/thread_checker.h" 27 #include "base/threading/thread_checker.h"
28 #include "base/threading/thread_task_runner_handle.h"
29 #include "mojo/edk/embedder/embedder.h" 29 #include "mojo/edk/embedder/embedder.h"
30 #include "mojo/edk/embedder/platform_channel_pair.h" 30 #include "mojo/edk/embedder/platform_channel_pair.h"
31 #include "mojo/edk/embedder/process_delegate.h" 31 #include "mojo/edk/embedder/process_delegate.h"
32 #include "mojo/edk/embedder/scoped_platform_handle.h" 32 #include "mojo/edk/embedder/scoped_platform_handle.h"
33 #include "mojo/public/cpp/bindings/binding.h" 33 #include "mojo/public/cpp/bindings/binding.h"
34 #include "mojo/public/cpp/system/core.h" 34 #include "mojo/public/cpp/system/core.h"
35 #include "services/shell/runner/common/switches.h" 35 #include "services/shell/runner/common/switches.h"
36 #include "services/shell/runner/host/child_process_base.h" 36 #include "services/shell/runner/host/child_process_base.h"
37 #include "services/shell/runner/host/native_application_support.h" 37 #include "services/shell/runner/host/native_application_support.h"
38 #include "services/shell/runner/init.h" 38 #include "services/shell/runner/init.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 if (command_line.HasSwitch(switches::kEnableSandbox)) 117 if (command_line.HasSwitch(switches::kEnableSandbox))
118 sandbox = InitializeSandbox(); 118 sandbox = InitializeSandbox();
119 #endif 119 #endif
120 120
121 ChildProcessMain(base::Bind(&RunNativeLibrary, app_library)); 121 ChildProcessMain(base::Bind(&RunNativeLibrary, app_library));
122 122
123 return 0; 123 return 0;
124 } 124 }
125 125
126 } // namespace shell 126 } // namespace shell
OLDNEW
« no previous file with comments | « services/shell/public/cpp/lib/shell_connection_ref.cc ('k') | services/shell/runner/host/child_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698