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

Side by Side Diff: content/child/process_control_impl.cc

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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 | « content/child/process_control_impl.h ('k') | content/common/mojo/mojo_shell_connection_impl.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "content/child/process_control_impl.h" 5 #include "content/child/process_control_impl.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "content/public/common/content_client.h" 10 #include "content/public/common/content_client.h"
11 #include "mojo/shell/static_application_loader.h" 11 #include "mojo/shell/static_application_loader.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 ProcessControlImpl::ProcessControlImpl() { 16 ProcessControlImpl::ProcessControlImpl() {
17 } 17 }
18 18
19 ProcessControlImpl::~ProcessControlImpl() { 19 ProcessControlImpl::~ProcessControlImpl() {
20 STLDeleteValues(&url_to_loader_map_); 20 STLDeleteValues(&url_to_loader_map_);
21 } 21 }
22 22
23 void ProcessControlImpl::LoadApplication( 23 void ProcessControlImpl::LoadApplication(
24 const mojo::String& url, 24 const mojo::String& url,
25 mojo::InterfaceRequest<mojo::Application> request, 25 mojo::InterfaceRequest<mojo::shell::mojom::Application> request,
26 const LoadApplicationCallback& callback) { 26 const LoadApplicationCallback& callback) {
27 // Only register loaders when we need it. 27 // Only register loaders when we need it.
28 if (!has_registered_loaders_) { 28 if (!has_registered_loaders_) {
29 DCHECK(url_to_loader_map_.empty()); 29 DCHECK(url_to_loader_map_.empty());
30 RegisterApplicationLoaders(&url_to_loader_map_); 30 RegisterApplicationLoaders(&url_to_loader_map_);
31 has_registered_loaders_ = true; 31 has_registered_loaders_ = true;
32 } 32 }
33 33
34 GURL application_url = GURL(url.To<std::string>()); 34 GURL application_url = GURL(url.To<std::string>());
35 auto it = url_to_loader_map_.find(application_url); 35 auto it = url_to_loader_map_.find(application_url);
36 if (it == url_to_loader_map_.end()) { 36 if (it == url_to_loader_map_.end()) {
37 callback.Run(false); 37 callback.Run(false);
38 OnLoadFailed(); 38 OnLoadFailed();
39 return; 39 return;
40 } 40 }
41 41
42 callback.Run(true); 42 callback.Run(true);
43 it->second->Load(application_url, std::move(request)); 43 it->second->Load(application_url, std::move(request));
44 } 44 }
45 45
46 } // namespace content 46 } // namespace content
OLDNEW
« no previous file with comments | « content/child/process_control_impl.h ('k') | content/common/mojo/mojo_shell_connection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698