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

Side by Side Diff: chrome/app/mash/mash_runner.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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 | « chrome/app/mash/mash_runner.h ('k') | chrome/browser/BUILD.gn » ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "chrome/app/mash/mash_runner.h" 5 #include "chrome/app/mash/mash_runner.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/debug/debugger.h" 10 #include "base/debug/debugger.h"
11 #include "base/i18n/icu_util.h" 11 #include "base/i18n/icu_util.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 #include "base/message_loop/message_loop.h" 14 #include "base/message_loop/message_loop.h"
15 #include "base/process/launch.h" 15 #include "base/process/launch.h"
16 #include "base/run_loop.h" 16 #include "base/run_loop.h"
17 #include "base/trace_event/trace_event.h" 17 #include "base/trace_event/trace_event.h"
18 #include "components/tracing/common/trace_to_console.h" 18 #include "components/tracing/common/trace_to_console.h"
19 #include "components/tracing/common/tracing_switches.h" 19 #include "components/tracing/common/tracing_switches.h"
20 #include "content/public/common/content_switches.h" 20 #include "content/public/common/content_switches.h"
21 #include "content/public/common/service_names.h" 21 #include "content/public/common/service_names.h"
22 #include "mash/package/mash_packaged_service.h" 22 #include "mash/package/mash_packaged_service.h"
23 #include "mojo/public/cpp/bindings/binding_set.h" 23 #include "mojo/public/cpp/bindings/binding_set.h"
24 #include "services/catalog/public/interfaces/catalog.mojom.h" 24 #include "services/catalog/public/interfaces/catalog.mojom.h"
25 #include "services/shell/background/background_shell.h" 25 #include "services/service_manager/background/background_shell.h"
26 #include "services/shell/native_runner_delegate.h" 26 #include "services/service_manager/native_runner_delegate.h"
27 #include "services/shell/public/cpp/connector.h" 27 #include "services/service_manager/public/cpp/connector.h"
28 #include "services/shell/public/cpp/identity.h" 28 #include "services/service_manager/public/cpp/identity.h"
29 #include "services/shell/public/cpp/service.h" 29 #include "services/service_manager/public/cpp/service.h"
30 #include "services/shell/public/cpp/service_context.h" 30 #include "services/service_manager/public/cpp/service_context.h"
31 #include "services/shell/public/interfaces/service_factory.mojom.h" 31 #include "services/service_manager/public/interfaces/service_factory.mojom.h"
32 #include "services/shell/runner/common/switches.h" 32 #include "services/service_manager/runner/common/switches.h"
33 #include "services/shell/runner/host/child_process_base.h" 33 #include "services/service_manager/runner/host/child_process_base.h"
34 #include "ui/base/resource/resource_bundle.h" 34 #include "ui/base/resource/resource_bundle.h"
35 #include "ui/base/ui_base_paths.h" 35 #include "ui/base/ui_base_paths.h"
36 #include "ui/base/ui_base_switches.h" 36 #include "ui/base/ui_base_switches.h"
37 37
38 using shell::mojom::ServiceFactory; 38 using shell::mojom::ServiceFactory;
39 39
40 namespace { 40 namespace {
41 41
42 // kProcessType used to identify child processes. 42 // kProcessType used to identify child processes.
43 const char* kMashChild = "mash-child"; 43 const char* kMashChild = "mash-child";
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 tracing::GetConfigForTraceToConsole(); 215 tracing::GetConfigForTraceToConsole();
216 base::trace_event::TraceLog::GetInstance()->SetEnabled( 216 base::trace_event::TraceLog::GetInstance()->SetEnabled(
217 trace_config, 217 trace_config,
218 base::trace_event::TraceLog::RECORDING_MODE); 218 base::trace_event::TraceLog::RECORDING_MODE);
219 } 219 }
220 220
221 MashRunner mash_runner; 221 MashRunner mash_runner;
222 mash_runner.Run(); 222 mash_runner.Run();
223 return 0; 223 return 0;
224 } 224 }
OLDNEW
« no previous file with comments | « chrome/app/mash/mash_runner.h ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698