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