blob: 320620599cc64f7a1f94274dc0612c9328856526 (
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
|
// 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 MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_CONTEXT_H_
#define MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_CONTEXT_H_
#include <set>
#include "base/memory/scoped_ptr.h"
#include "mojo/public/cpp/application/application_connection.h"
#include "mojo/public/cpp/application/application_delegate.h"
#include "mojo/services/view_manager/root_view_manager_delegate.h"
#include "mojo/services/view_manager/view_manager_export.h"
namespace mojo {
namespace view_manager {
namespace service {
class RootNodeManager;
class ViewManagerInitServiceImpl;
// State shared between all ViewManagerInitService impls.
class MOJO_VIEW_MANAGER_EXPORT ViewManagerInitServiceContext
: public RootViewManagerDelegate {
public:
ViewManagerInitServiceContext();
virtual ~ViewManagerInitServiceContext();
void AddConnection(ViewManagerInitServiceImpl* connection);
void RemoveConnection(ViewManagerInitServiceImpl* connection);
void ConfigureIncomingConnection(ApplicationConnection* connection);
RootNodeManager* root_node_manager() { return root_node_manager_.get(); }
bool is_tree_host_ready() const { return is_tree_host_ready_; }
private:
typedef std::vector<ViewManagerInitServiceImpl*> Connections;
// RootViewManagerDelegate overrides:
virtual void OnRootViewManagerWindowTreeHostCreated() OVERRIDE;
void OnNativeViewportDeleted();
scoped_ptr<RootNodeManager> root_node_manager_;
Connections connections_;
bool is_tree_host_ready_;
DISALLOW_COPY_AND_ASSIGN(ViewManagerInitServiceContext);
};
} // namespace service
} // namespace view_manager
} // namespace mojo
#endif // MOJO_SERVICES_VIEW_MANAGER_VIEW_MANAGER_INIT_SERVICE_CONTEXT_H_
|