summaryrefslogtreecommitdiffstats
path: root/content/child/process_control_impl.cc
blob: f1e6c3d15541c39e7bf05185862fd6aaafdf85d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/child/process_control_impl.h"

#include "base/stl_util.h"
#include "content/public/common/content_client.h"
#include "mojo/shell/static_application_loader.h"
#include "url/gurl.h"

namespace content {

ProcessControlImpl::ProcessControlImpl() {
}

ProcessControlImpl::~ProcessControlImpl() {
  STLDeleteValues(&url_to_loader_map_);
}

void ProcessControlImpl::LoadApplication(
    const mojo::String& url,
    mojo::InterfaceRequest<mojo::Application> request,
    const LoadApplicationCallback& callback) {
  // Only register loaders when we need it.
  if (!has_registered_loaders_) {
    DCHECK(url_to_loader_map_.empty());
    RegisterApplicationLoaders(&url_to_loader_map_);
    has_registered_loaders_ = true;
  }

  GURL application_url = GURL(url.To<std::string>());
  auto it = url_to_loader_map_.find(application_url);
  if (it == url_to_loader_map_.end()) {
    callback.Run(false);
    OnLoadFailed();
    return;
  }

  callback.Run(true);
  it->second->Load(application_url, request.Pass());
}

}  // namespace content