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

Side by Side Diff: shell/context.cc

Issue 1394303004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 3). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_2-x-no_public_1
Patch Set: Created 5 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 | « shell/application_manager/network_fetcher.h ('k') | shell/tracer.h » ('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 "shell/context.h" 5 #include "shell/context.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/base_switches.h" 9 #include "base/base_switches.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 11 matching lines...) Expand all
22 #include "base/trace_event/trace_event.h" 22 #include "base/trace_event/trace_event.h"
23 #include "build/build_config.h" 23 #include "build/build_config.h"
24 #include "mojo/common/trace_provider_impl.h" 24 #include "mojo/common/trace_provider_impl.h"
25 #include "mojo/common/tracing_impl.h" 25 #include "mojo/common/tracing_impl.h"
26 #include "mojo/edk/embedder/embedder.h" 26 #include "mojo/edk/embedder/embedder.h"
27 #include "mojo/edk/embedder/simple_platform_support.h" 27 #include "mojo/edk/embedder/simple_platform_support.h"
28 #include "mojo/public/cpp/application/application_connection.h" 28 #include "mojo/public/cpp/application/application_connection.h"
29 #include "mojo/public/cpp/application/application_delegate.h" 29 #include "mojo/public/cpp/application/application_delegate.h"
30 #include "mojo/public/cpp/application/application_impl.h" 30 #include "mojo/public/cpp/application/application_impl.h"
31 #include "mojo/public/cpp/bindings/strong_binding.h" 31 #include "mojo/public/cpp/bindings/strong_binding.h"
32 #include "mojo/services/tracing/public/interfaces/tracing.mojom.h" 32 #include "mojo/services/tracing/interfaces/tracing.mojom.h"
33 #include "shell/application_manager/application_loader.h" 33 #include "shell/application_manager/application_loader.h"
34 #include "shell/application_manager/application_manager.h" 34 #include "shell/application_manager/application_manager.h"
35 #include "shell/application_manager/native_application_options.h" 35 #include "shell/application_manager/native_application_options.h"
36 #include "shell/background_application_loader.h" 36 #include "shell/background_application_loader.h"
37 #include "shell/command_line_util.h" 37 #include "shell/command_line_util.h"
38 #include "shell/filename_util.h" 38 #include "shell/filename_util.h"
39 #include "shell/in_process_native_runner.h" 39 #include "shell/in_process_native_runner.h"
40 #include "shell/out_of_process_native_runner.h" 40 #include "shell/out_of_process_native_runner.h"
41 #include "shell/switches.h" 41 #include "shell/switches.h"
42 #include "shell/tracer.h" 42 #include "shell/tracer.h"
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 app_urls_.erase(url); 388 app_urls_.erase(url);
389 if (app_urls_.empty() && base::MessageLoop::current()->is_running()) { 389 if (app_urls_.empty() && base::MessageLoop::current()->is_running()) {
390 DCHECK_EQ(base::MessageLoop::current()->task_runner(), 390 DCHECK_EQ(base::MessageLoop::current()->task_runner(),
391 task_runners_->shell_runner()); 391 task_runners_->shell_runner());
392 base::MessageLoop::current()->Quit(); 392 base::MessageLoop::current()->Quit();
393 } 393 }
394 } 394 }
395 } 395 }
396 396
397 } // namespace shell 397 } // namespace shell
OLDNEW
« no previous file with comments | « shell/application_manager/network_fetcher.h ('k') | shell/tracer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698