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 #include "components/mus/ws/default_access_policy.h" | 5 #include "components/mus/ws/default_access_policy.h" |
6 | 6 |
7 #include "components/mus/ws/access_policy_delegate.h" | 7 #include "components/mus/ws/access_policy_delegate.h" |
8 #include "components/mus/ws/server_window.h" | 8 #include "components/mus/ws/server_window.h" |
9 | 9 |
10 namespace mus { | 10 namespace mus { |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 const ServerWindow* window) const { | 116 const ServerWindow* window) const { |
117 return WasCreatedByThisConnection(window); | 117 return WasCreatedByThisConnection(window); |
118 } | 118 } |
119 | 119 |
120 bool DefaultAccessPolicy::CanSetWindowTextInputState( | 120 bool DefaultAccessPolicy::CanSetWindowTextInputState( |
121 const ServerWindow* window) const { | 121 const ServerWindow* window) const { |
122 return WasCreatedByThisConnection(window) || | 122 return WasCreatedByThisConnection(window) || |
123 delegate_->IsRootForAccessPolicy(window->id()); | 123 delegate_->IsRootForAccessPolicy(window->id()); |
124 } | 124 } |
125 | 125 |
| 126 bool DefaultAccessPolicy::CanSetCapture(const ServerWindow* window) const { |
| 127 return WasCreatedByThisConnection(window) || |
| 128 delegate_->IsRootForAccessPolicy(window->id()); |
| 129 } |
| 130 |
126 bool DefaultAccessPolicy::CanSetFocus(const ServerWindow* window) const { | 131 bool DefaultAccessPolicy::CanSetFocus(const ServerWindow* window) const { |
127 return WasCreatedByThisConnection(window) || | 132 return WasCreatedByThisConnection(window) || |
128 delegate_->IsRootForAccessPolicy(window->id()); | 133 delegate_->IsRootForAccessPolicy(window->id()); |
129 } | 134 } |
130 | 135 |
131 bool DefaultAccessPolicy::CanSetClientArea(const ServerWindow* window) const { | 136 bool DefaultAccessPolicy::CanSetClientArea(const ServerWindow* window) const { |
132 return WasCreatedByThisConnection(window) || | 137 return WasCreatedByThisConnection(window) || |
133 delegate_->IsRootForAccessPolicy(window->id()); | 138 delegate_->IsRootForAccessPolicy(window->id()); |
134 } | 139 } |
135 | 140 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 } | 176 } |
172 | 177 |
173 bool DefaultAccessPolicy::IsDescendantOfEmbedRoot( | 178 bool DefaultAccessPolicy::IsDescendantOfEmbedRoot( |
174 const ServerWindow* window) const { | 179 const ServerWindow* window) const { |
175 return delegate_->IsDescendantOfEmbedRoot(window); | 180 return delegate_->IsDescendantOfEmbedRoot(window); |
176 } | 181 } |
177 | 182 |
178 } // namespace ws | 183 } // namespace ws |
179 | 184 |
180 } // namespace mus | 185 } // namespace mus |
OLD | NEW |