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 COMPONENTS_MUS_WS_DEFAULT_ACCESS_POLICY_H_ | 5 #ifndef COMPONENTS_MUS_WS_DEFAULT_ACCESS_POLICY_H_ |
6 #define COMPONENTS_MUS_WS_DEFAULT_ACCESS_POLICY_H_ | 6 #define COMPONENTS_MUS_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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 bool CanSetWindowTextInputState(const ServerWindow* window) const override; | 48 bool CanSetWindowTextInputState(const ServerWindow* window) const override; |
49 bool CanSetFocus(const ServerWindow* window) const override; | 49 bool CanSetFocus(const ServerWindow* window) const override; |
50 bool CanSetClientArea(const ServerWindow* window) const override; | 50 bool CanSetClientArea(const ServerWindow* window) const override; |
51 bool CanSetCursorProperties(const ServerWindow* window) const override; | 51 bool CanSetCursorProperties(const ServerWindow* window) const override; |
52 bool ShouldNotifyOnHierarchyChange( | 52 bool ShouldNotifyOnHierarchyChange( |
53 const ServerWindow* window, | 53 const ServerWindow* window, |
54 const ServerWindow** new_parent, | 54 const ServerWindow** new_parent, |
55 const ServerWindow** old_parent) const override; | 55 const ServerWindow** old_parent) const override; |
56 const ServerWindow* GetWindowForFocusChange( | 56 const ServerWindow* GetWindowForFocusChange( |
57 const ServerWindow* focused) override; | 57 const ServerWindow* focused) override; |
58 bool CanSetWindowManagerInternal() const override; | 58 bool CanSetWindowManager() const override; |
59 | 59 |
60 private: | 60 private: |
61 bool WasCreatedByThisConnection(const ServerWindow* window) const; | 61 bool WasCreatedByThisConnection(const ServerWindow* window) const; |
62 bool IsDescendantOfEmbedRoot(const ServerWindow* window) const; | 62 bool IsDescendantOfEmbedRoot(const ServerWindow* window) const; |
63 | 63 |
64 const ConnectionSpecificId connection_id_; | 64 const ConnectionSpecificId connection_id_; |
65 AccessPolicyDelegate* delegate_; | 65 AccessPolicyDelegate* delegate_; |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(DefaultAccessPolicy); | 67 DISALLOW_COPY_AND_ASSIGN(DefaultAccessPolicy); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace ws | 70 } // namespace ws |
71 | 71 |
72 } // namespace mus | 72 } // namespace mus |
73 | 73 |
74 #endif // COMPONENTS_MUS_WS_DEFAULT_ACCESS_POLICY_H_ | 74 #endif // COMPONENTS_MUS_WS_DEFAULT_ACCESS_POLICY_H_ |
OLD | NEW |