blob: b90ac325274e71ec6c400744d358c93bc53a3661 (
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
71
72
|
// 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 MOJO_SHELL_CONNECT_PARAMS_H_
#define MOJO_SHELL_CONNECT_PARAMS_H_
#include <string>
#include <utility>
#include "base/callback.h"
#include "base/macros.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "mojo/shell/identity.h"
#include "mojo/shell/public/interfaces/connector.mojom.h"
#include "mojo/shell/public/interfaces/interface_provider.mojom.h"
namespace mojo {
namespace shell {
// This class represents a request for the application manager to connect to an
// application.
class ConnectParams {
public:
ConnectParams();
~ConnectParams();
void set_source(const Identity& source) { source_ = source; }
const Identity& source() const { return source_; }
void set_target(const Identity& target) { target_ = target; }
const Identity& target() const { return target_; }
void set_remote_interfaces(shell::mojom::InterfaceProviderRequest value) {
remote_interfaces_ = std::move(value);
}
shell::mojom::InterfaceProviderRequest TakeRemoteInterfaces() {
return std::move(remote_interfaces_);
}
void set_local_interfaces(shell::mojom::InterfaceProviderPtr value) {
local_interfaces_ = std::move(value);
}
shell::mojom::InterfaceProviderPtr TakeLocalInterfaces() {
return std::move(local_interfaces_);
}
void set_connect_callback(
const shell::mojom::Connector::ConnectCallback& value) {
connect_callback_ = value;
}
const shell::mojom::Connector::ConnectCallback& connect_callback() const {
return connect_callback_;
}
private:
// It may be null (i.e., is_null() returns true) which indicates that there is
// no source (e.g., for the first application or in tests).
Identity source_;
// The identity of the application being connected to.
Identity target_;
shell::mojom::InterfaceProviderRequest remote_interfaces_;
shell::mojom::InterfaceProviderPtr local_interfaces_;
shell::mojom::Connector::ConnectCallback connect_callback_;
DISALLOW_COPY_AND_ASSIGN(ConnectParams);
};
} // namespace shell
} // namespace mojo
#endif // MOJO_SHELL_CONNECT_PARAMS_H_
|