OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ | 5 #ifndef SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ |
6 #define SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ | 6 #define SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 const ServerWindow* relative_window, | 36 const ServerWindow* relative_window, |
37 mojom::OrderDirection direction) const override; | 37 mojom::OrderDirection direction) const override; |
38 bool CanDeleteWindow(const ServerWindow* window) const override; | 38 bool CanDeleteWindow(const ServerWindow* window) const override; |
39 bool CanGetWindowTree(const ServerWindow* window) const override; | 39 bool CanGetWindowTree(const ServerWindow* window) const override; |
40 bool CanDescendIntoWindowForWindowTree( | 40 bool CanDescendIntoWindowForWindowTree( |
41 const ServerWindow* window) const override; | 41 const ServerWindow* window) const override; |
42 bool CanEmbed(const ServerWindow* window) const override; | 42 bool CanEmbed(const ServerWindow* window) const override; |
43 bool CanChangeWindowVisibility(const ServerWindow* window) const override; | 43 bool CanChangeWindowVisibility(const ServerWindow* window) const override; |
44 bool CanChangeWindowOpacity(const ServerWindow* window) const override; | 44 bool CanChangeWindowOpacity(const ServerWindow* window) const override; |
45 bool CanSetWindowCompositorFrameSink( | 45 bool CanSetWindowCompositorFrameSink( |
46 const ServerWindow* window, | 46 const ServerWindow* window) const override; |
47 ui::mojom::CompositorFrameSinkType surface_type) const override; | |
48 bool CanSetWindowBounds(const ServerWindow* window) const override; | 47 bool CanSetWindowBounds(const ServerWindow* window) const override; |
49 bool CanSetWindowProperties(const ServerWindow* window) const override; | 48 bool CanSetWindowProperties(const ServerWindow* window) const override; |
50 bool CanSetWindowTextInputState(const ServerWindow* window) const override; | 49 bool CanSetWindowTextInputState(const ServerWindow* window) const override; |
51 bool CanSetCapture(const ServerWindow* window) const override; | 50 bool CanSetCapture(const ServerWindow* window) const override; |
52 bool CanSetFocus(const ServerWindow* window) const override; | 51 bool CanSetFocus(const ServerWindow* window) const override; |
53 bool CanSetClientArea(const ServerWindow* window) const override; | 52 bool CanSetClientArea(const ServerWindow* window) const override; |
54 bool CanSetHitTestMask(const ServerWindow* window) const override; | 53 bool CanSetHitTestMask(const ServerWindow* window) const override; |
55 bool CanSetAcceptDrops(const ServerWindow* window) const override; | 54 bool CanSetAcceptDrops(const ServerWindow* window) const override; |
56 bool CanSetAcceptEvents(const ServerWindow* window) const override; | 55 bool CanSetAcceptEvents(const ServerWindow* window) const override; |
57 bool CanSetCursorProperties(const ServerWindow* window) const override; | 56 bool CanSetCursorProperties(const ServerWindow* window) const override; |
(...skipping 14 matching lines...) Expand all Loading... |
72 ClientSpecificId client_id_ = 0u; | 71 ClientSpecificId client_id_ = 0u; |
73 AccessPolicyDelegate* delegate_ = nullptr; | 72 AccessPolicyDelegate* delegate_ = nullptr; |
74 | 73 |
75 DISALLOW_COPY_AND_ASSIGN(DefaultAccessPolicy); | 74 DISALLOW_COPY_AND_ASSIGN(DefaultAccessPolicy); |
76 }; | 75 }; |
77 | 76 |
78 } // namespace ws | 77 } // namespace ws |
79 } // namespace ui | 78 } // namespace ui |
80 | 79 |
81 #endif // SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ | 80 #endif // SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ |
OLD | NEW |