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
|
// 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.
#include "components/mus/ws/window_tree_host_connection.h"
#include "components/mus/ws/connection_manager.h"
#include "components/mus/ws/window_tree_host_impl.h"
namespace mus {
namespace ws {
WindowTreeHostConnection::WindowTreeHostConnection(
scoped_ptr<WindowTreeHostImpl> host_impl,
ConnectionManager* manager)
: host_(host_impl.Pass()),
tree_(nullptr),
connection_manager_(manager),
connection_closed_(false) {}
WindowTreeHostConnection::~WindowTreeHostConnection() {
// If this DCHECK fails then something has tried to delete this object without
// calling CloseConnection.
DCHECK(connection_closed_);
}
void WindowTreeHostConnection::CloseConnection() {
// A connection error will trigger the display to close and so we want to make
// sure we signal the ConnectionManager only once.
if (connection_closed_)
return;
// We have to shut down the focus system for this host before destroying the
// host, as destruction of the window tree will attempt to change focus.
host_->DestroyFocusController();
connection_manager()->OnHostConnectionClosed(this);
connection_closed_ = true;
delete this;
}
WindowTreeImpl* WindowTreeHostConnection::GetWindowTree() {
return tree_;
}
void WindowTreeHostConnection::OnDisplayInitialized() {}
void WindowTreeHostConnection::OnDisplayClosed() {
CloseConnection();
}
WindowTreeHostConnectionImpl::WindowTreeHostConnectionImpl(
mojo::InterfaceRequest<mojom::WindowTreeHost> request,
scoped_ptr<WindowTreeHostImpl> host_impl,
mojom::WindowTreeClientPtr client,
ConnectionManager* manager)
: WindowTreeHostConnection(host_impl.Pass(), manager),
binding_(window_tree_host(), request.Pass()),
client_(client.Pass()) {}
WindowTreeHostConnectionImpl::~WindowTreeHostConnectionImpl() {}
void WindowTreeHostConnectionImpl::OnDisplayInitialized() {
connection_manager()->AddHost(this);
set_window_tree(connection_manager()->EmbedAtWindow(
kInvalidConnectionId, window_tree_host()->root_window()->id(),
mojom::WindowTree::ACCESS_POLICY_EMBED_ROOT, client_.Pass()));
}
} // namespace ws
} // namespace mus
|