blob: 1d5d2115462e5d06ff35ee9876d540eb66f4b866 (
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
|
// 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_VIEW_MANAGER_WINDOW_MANAGER_ACCESS_POLICY_H_
#define COMPONENTS_VIEW_MANAGER_WINDOW_MANAGER_ACCESS_POLICY_H_
#include "base/basictypes.h"
#include "components/view_manager/access_policy.h"
namespace view_manager {
class AccessPolicyDelegate;
class WindowManagerAccessPolicy : public AccessPolicy {
public:
WindowManagerAccessPolicy(mojo::ConnectionSpecificId connection_id,
AccessPolicyDelegate* delegate);
~WindowManagerAccessPolicy() override;
// AccessPolicy:
bool CanRemoveViewFromParent(const ServerView* view) const override;
bool CanAddView(const ServerView* parent,
const ServerView* child) const override;
bool CanReorderView(const ServerView* view,
const ServerView* relative_view,
mojo::OrderDirection direction) const override;
bool CanDeleteView(const ServerView* view) const override;
bool CanGetViewTree(const ServerView* view) const override;
bool CanDescendIntoViewForViewTree(const ServerView* view) const override;
bool CanEmbed(const ServerView* view) const override;
bool CanChangeViewVisibility(const ServerView* view) const override;
bool CanSetViewSurfaceId(const ServerView* view) const override;
bool CanSetViewBounds(const ServerView* view) const override;
bool CanSetViewProperties(const ServerView* view) const override;
bool CanSetViewTextInputState(const ServerView* view) const override;
bool CanSetFocus(const ServerView* view) const override;
bool ShouldNotifyOnHierarchyChange(
const ServerView* view,
const ServerView** new_parent,
const ServerView** old_parent) const override;
const ServerView* GetViewForFocusChange(const ServerView* focused) override;
private:
bool IsViewKnown(const ServerView* view) const;
const mojo::ConnectionSpecificId connection_id_;
AccessPolicyDelegate* delegate_;
DISALLOW_COPY_AND_ASSIGN(WindowManagerAccessPolicy);
};
} // namespace view_manager
#endif // COMPONENTS_VIEW_MANAGER_WINDOW_MANAGER_ACCESS_POLICY_H_
|