summaryrefslogtreecommitdiffstats
path: root/content/utility/utility_process_control_impl.h
blob: dcc0a4d6179a1b1cddeabe616183a999a0aecb30 (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
45
46
47
48
// 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.

#ifndef UTILITY_PROCESS_CONTROL_IMPL_H_
#define UTILITY_PROCESS_CONTROL_IMPL_H_

#include <map>

#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "content/common/process_control.mojom.h"
#include "mojo/application/public/interfaces/application.mojom.h"
#include "third_party/mojo/src/mojo/public/cpp/bindings/interface_request.h"

class GURL;

namespace mojo {
namespace shell {
class ApplicationLoader;
}  // namespace shell
}  // namespace mojo

namespace content {

// Implementation of the ProcessControl interface. Exposed to the browser via
// the utility process's ServiceRegistry.
class UtilityProcessControlImpl : public ProcessControl {
 public:
  UtilityProcessControlImpl();
  ~UtilityProcessControlImpl() override;

  using URLToLoaderMap = std::map<GURL, mojo::shell::ApplicationLoader*>;

  // ProcessControl:
  void LoadApplication(const mojo::String& url,
                       mojo::InterfaceRequest<mojo::Application> request,
                       const LoadApplicationCallback& callback) override;

 private:
  URLToLoaderMap url_to_loader_map_;

  DISALLOW_COPY_AND_ASSIGN(UtilityProcessControlImpl);
};

}  // namespace content

#endif  // UTILITY_PROCESS_CONTROL_IMPL_H_