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

Side by Side Diff: mojo/runner/context.cc

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 | « mojo/runner/child/test_native_main.cc ('k') | mojo/runner/shell_apptest.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/runner/context.h" 5 #include "mojo/runner/context.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <utility> 10 #include <utility>
(...skipping 10 matching lines...) Expand all
21 #include "base/process/process_info.h" 21 #include "base/process/process_info.h"
22 #include "base/run_loop.h" 22 #include "base/run_loop.h"
23 #include "base/strings/string_number_conversions.h" 23 #include "base/strings/string_number_conversions.h"
24 #include "base/strings/string_split.h" 24 #include "base/strings/string_split.h"
25 #include "base/strings/string_util.h" 25 #include "base/strings/string_util.h"
26 #include "base/trace_event/trace_event.h" 26 #include "base/trace_event/trace_event.h"
27 #include "build/build_config.h" 27 #include "build/build_config.h"
28 #include "components/devtools_service/public/cpp/switches.h" 28 #include "components/devtools_service/public/cpp/switches.h"
29 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h " 29 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h "
30 #include "components/tracing/tracing_switches.h" 30 #include "components/tracing/tracing_switches.h"
31 #include "mojo/application/public/cpp/application_connection.h"
32 #include "mojo/application/public/cpp/application_delegate.h"
33 #include "mojo/application/public/cpp/application_impl.h"
34 #include "mojo/public/cpp/bindings/strong_binding.h" 31 #include "mojo/public/cpp/bindings/strong_binding.h"
35 #include "mojo/runner/host/in_process_native_runner.h" 32 #include "mojo/runner/host/in_process_native_runner.h"
36 #include "mojo/runner/host/out_of_process_native_runner.h" 33 #include "mojo/runner/host/out_of_process_native_runner.h"
37 #include "mojo/runner/register_local_aliases.h" 34 #include "mojo/runner/register_local_aliases.h"
38 #include "mojo/runner/switches.h" 35 #include "mojo/runner/switches.h"
39 #include "mojo/runner/tracer.h" 36 #include "mojo/runner/tracer.h"
40 #include "mojo/services/tracing/public/cpp/switches.h" 37 #include "mojo/services/tracing/public/cpp/switches.h"
41 #include "mojo/services/tracing/public/cpp/trace_provider_impl.h" 38 #include "mojo/services/tracing/public/cpp/trace_provider_impl.h"
42 #include "mojo/services/tracing/public/cpp/tracing_impl.h" 39 #include "mojo/services/tracing/public/cpp/tracing_impl.h"
43 #include "mojo/services/tracing/public/interfaces/tracing.mojom.h" 40 #include "mojo/services/tracing/public/interfaces/tracing.mojom.h"
44 #include "mojo/shell/application_loader.h" 41 #include "mojo/shell/application_loader.h"
45 #include "mojo/shell/connect_to_application_params.h" 42 #include "mojo/shell/connect_to_application_params.h"
46 #include "mojo/shell/package_manager/package_manager_impl.h" 43 #include "mojo/shell/package_manager/package_manager_impl.h"
44 #include "mojo/shell/public/cpp/application_connection.h"
45 #include "mojo/shell/public/cpp/application_delegate.h"
46 #include "mojo/shell/public/cpp/application_impl.h"
47 #include "mojo/shell/query_util.h" 47 #include "mojo/shell/query_util.h"
48 #include "mojo/shell/switches.h" 48 #include "mojo/shell/switches.h"
49 #include "mojo/util/filename_util.h" 49 #include "mojo/util/filename_util.h"
50 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" 50 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h"
51 #include "url/gurl.h" 51 #include "url/gurl.h"
52 52
53 namespace mojo { 53 namespace mojo {
54 namespace runner { 54 namespace runner {
55 namespace { 55 namespace {
56 56
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 base::MessageLoop::current()->QuitWhenIdle(); 347 base::MessageLoop::current()->QuitWhenIdle();
348 } else { 348 } else {
349 app_complete_callback_.Run(); 349 app_complete_callback_.Run();
350 } 350 }
351 } 351 }
352 } 352 }
353 } 353 }
354 354
355 } // namespace runner 355 } // namespace runner
356 } // namespace mojo 356 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/runner/child/test_native_main.cc ('k') | mojo/runner/shell_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698