blob: 925f751dcbd963e466cfcdc513c1603f502a2302 (
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
|
// 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_PUBLIC_BROWSER_MOJO_APP_CONNECTION_H_
#define CONTENT_PUBLIC_BROWSER_MOJO_APP_CONNECTION_H_
#include <string>
#include "base/memory/scoped_ptr.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/interface_ptr.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "mojo/public/cpp/system/message_pipe.h"
class GURL;
namespace content {
// A virtual app URL identifying the browser itself. This should be used for
// a connection's |requestor_url| when connecting from browser code to apps that
// don't require a more specific request context.
CONTENT_EXPORT extern const char kBrowserMojoAppUrl[];
// This provides a way for arbitrary browser code to connect to Mojo apps. These
// objects are not thread-safe but may be constructed and used on any single
// thread.
class CONTENT_EXPORT MojoAppConnection {
public:
virtual ~MojoAppConnection() {}
// Creates a new connection to the application at |url| using |requestor_url|
// to identify the requestor upon connection. This may be called from any
// thread.
static scoped_ptr<MojoAppConnection> Create(const GURL& url,
const GURL& requestor_url);
// Connects to a service within the application.
template <typename Interface>
void ConnectToService(mojo::InterfacePtr<Interface>* proxy) {
ConnectToService(Interface::Name_, mojo::GetProxy(proxy).PassMessagePipe());
}
virtual void ConnectToService(const std::string& service_name,
mojo::ScopedMessagePipeHandle handle) = 0;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_MOJO_APP_CONNECTION_H_
|