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 24 matching lines...) Expand all Loading... |
35 bool CanReorderWindow(const ServerWindow* window, | 35 bool CanReorderWindow(const ServerWindow* window, |
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 CanSetWindowSurface(const ServerWindow* window, | 45 bool CanSetWindowCompositorFrameSink( |
46 ui::mojom::SurfaceType surface_type) const override; | 46 const ServerWindow* window, |
| 47 ui::mojom::CompositorFrameSinkType surface_type) const override; |
47 bool CanSetWindowBounds(const ServerWindow* window) const override; | 48 bool CanSetWindowBounds(const ServerWindow* window) const override; |
48 bool CanSetWindowProperties(const ServerWindow* window) const override; | 49 bool CanSetWindowProperties(const ServerWindow* window) const override; |
49 bool CanSetWindowTextInputState(const ServerWindow* window) const override; | 50 bool CanSetWindowTextInputState(const ServerWindow* window) const override; |
50 bool CanSetCapture(const ServerWindow* window) const override; | 51 bool CanSetCapture(const ServerWindow* window) const override; |
51 bool CanSetFocus(const ServerWindow* window) const override; | 52 bool CanSetFocus(const ServerWindow* window) const override; |
52 bool CanSetClientArea(const ServerWindow* window) const override; | 53 bool CanSetClientArea(const ServerWindow* window) const override; |
53 bool CanSetHitTestMask(const ServerWindow* window) const override; | 54 bool CanSetHitTestMask(const ServerWindow* window) const override; |
54 bool CanSetAcceptDrops(const ServerWindow* window) const override; | 55 bool CanSetAcceptDrops(const ServerWindow* window) const override; |
55 bool CanSetAcceptEvents(const ServerWindow* window) const override; | 56 bool CanSetAcceptEvents(const ServerWindow* window) const override; |
56 bool CanSetCursorProperties(const ServerWindow* window) const override; | 57 bool CanSetCursorProperties(const ServerWindow* window) const override; |
(...skipping 14 matching lines...) Expand all Loading... |
71 ClientSpecificId client_id_ = 0u; | 72 ClientSpecificId client_id_ = 0u; |
72 AccessPolicyDelegate* delegate_ = nullptr; | 73 AccessPolicyDelegate* delegate_ = nullptr; |
73 | 74 |
74 DISALLOW_COPY_AND_ASSIGN(DefaultAccessPolicy); | 75 DISALLOW_COPY_AND_ASSIGN(DefaultAccessPolicy); |
75 }; | 76 }; |
76 | 77 |
77 } // namespace ws | 78 } // namespace ws |
78 } // namespace ui | 79 } // namespace ui |
79 | 80 |
80 #endif // SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ | 81 #endif // SERVICES_UI_WS_DEFAULT_ACCESS_POLICY_H_ |
OLD | NEW |