blob: 37f8fc961fb7357f7f177c1da76225c5cf99f541 (
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
|
// Copyright 2014 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 COMPONENTS_MUS_WS_CLIENT_CONNECTION_H_
#define COMPONENTS_MUS_WS_CLIENT_CONNECTION_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "components/mus/public/interfaces/window_tree.mojom.h"
#include "mojo/public/cpp/bindings/binding.h"
namespace mus {
namespace ws {
class ConnectionManager;
class WindowTreeImpl;
// ClientConnection encapsulates the state needed for a single client connected
// to the window manager.
class ClientConnection {
public:
ClientConnection(scoped_ptr<WindowTreeImpl> service,
mojom::WindowTreeClient* client);
virtual ~ClientConnection();
WindowTreeImpl* service() { return service_.get(); }
const WindowTreeImpl* service() const { return service_.get(); }
mojom::WindowTreeClient* client() { return client_; }
virtual mojom::WindowManagerInternal* GetWindowManagerInternal() = 0;
virtual void SetIncomingMethodCallProcessingPaused(bool paused) = 0;
private:
scoped_ptr<WindowTreeImpl> service_;
mojom::WindowTreeClient* client_;
DISALLOW_COPY_AND_ASSIGN(ClientConnection);
};
// Bindings implementation of ClientConnection.
class DefaultClientConnection : public ClientConnection {
public:
DefaultClientConnection(
scoped_ptr<WindowTreeImpl> service_impl,
ConnectionManager* connection_manager,
mojo::InterfaceRequest<mojom::WindowTree> service_request,
mojom::WindowTreeClientPtr client);
~DefaultClientConnection() override;
// ClientConnection:
mojom::WindowManagerInternal* GetWindowManagerInternal() override;
void SetIncomingMethodCallProcessingPaused(bool paused) override;
private:
ConnectionManager* connection_manager_;
mojo::Binding<mojom::WindowTree> binding_;
mojom::WindowTreeClientPtr client_;
mojom::WindowManagerInternalAssociatedPtr window_manager_internal_;
DISALLOW_COPY_AND_ASSIGN(DefaultClientConnection);
};
} // namespace ws
} // namespace mus
#endif // COMPONENTS_MUS_WS_CLIENT_CONNECTION_H_
|