summaryrefslogtreecommitdiffstats
path: root/content/browser/mojo/mojo_shell_context.h
blob: b0ac5b169a381ec17e00fb0dbc817d482560918d (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// 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 CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_
#define CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_

#include <map>

#include "base/callback_forward.h"
#include "base/compiler_specific.h"
#include "base/lazy_instance.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "content/common/content_export.h"
#include "mojo/shell/application_manager.h"

class GURL;

namespace mojo {
class ApplicationDelegate;
}

namespace content {

// MojoShellContext hosts the browser's ApplicationManager, coordinating
// app registration and interconnection.
class CONTENT_EXPORT MojoShellContext
    : public NON_EXPORTED_BASE(mojo::shell::ApplicationManager::Delegate) {
 public:
  using StaticApplicationMap =
      std::map<GURL, base::Callback<scoped_ptr<mojo::ApplicationDelegate>()>>;

  MojoShellContext();
  ~MojoShellContext() override;

  // Connects an application at |url| and gets a handle to its exposed services.
  // This is only intended for use in browser code that's not part of some Mojo
  // application. May be called from any thread.
  static void ConnectToApplication(
      const GURL& url,
      mojo::InterfaceRequest<mojo::ServiceProvider> request);

  static void SetApplicationsForTest(const StaticApplicationMap* apps);

 private:
  class Proxy;
  friend class Proxy;

  void ConnectToApplicationOnOwnThread(
      const GURL& url,
      mojo::InterfaceRequest<mojo::ServiceProvider> request);

  // mojo::shell::ApplicationManager::Delegate:
  GURL ResolveMappings(const GURL& url) override;
  GURL ResolveMojoURL(const GURL& url) override;
  bool CreateFetcher(
      const GURL& url,
      const mojo::shell::Fetcher::FetchCallback& loader_callback) override;

  static base::LazyInstance<scoped_ptr<Proxy>> proxy_;

  scoped_ptr<mojo::shell::ApplicationManager> application_manager_;

  DISALLOW_COPY_AND_ASSIGN(MojoShellContext);
};

}  // namespace content

#endif  // CONTENT_BROWSER_MOJO_MOJO_SHELL_CONTEXT_H_