| 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 "services/ui/ws/default_access_policy.h" | 5 #include "services/ui/ws/default_access_policy.h" |
| 6 | 6 |
| 7 #include "services/ui/ws/access_policy_delegate.h" | 7 #include "services/ui/ws/access_policy_delegate.h" |
| 8 #include "services/ui/ws/server_window.h" | 8 #include "services/ui/ws/server_window.h" |
| 9 | 9 |
| 10 namespace ui { | 10 namespace ui { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 bool DefaultAccessPolicy::CanSetClientArea(const ServerWindow* window) const { | 142 bool DefaultAccessPolicy::CanSetClientArea(const ServerWindow* window) const { |
| 143 return WasCreatedByThisClient(window) || | 143 return WasCreatedByThisClient(window) || |
| 144 delegate_->HasRootForAccessPolicy(window); | 144 delegate_->HasRootForAccessPolicy(window); |
| 145 } | 145 } |
| 146 | 146 |
| 147 bool DefaultAccessPolicy::CanSetHitTestMask(const ServerWindow* window) const { | 147 bool DefaultAccessPolicy::CanSetHitTestMask(const ServerWindow* window) const { |
| 148 return WasCreatedByThisClient(window) || | 148 return WasCreatedByThisClient(window) || |
| 149 delegate_->HasRootForAccessPolicy(window); | 149 delegate_->HasRootForAccessPolicy(window); |
| 150 } | 150 } |
| 151 | 151 |
| 152 bool DefaultAccessPolicy::CanSetAcceptDrags(const ServerWindow* window) const { |
| 153 return delegate_->HasRootForAccessPolicy(window); |
| 154 } |
| 155 |
| 152 bool DefaultAccessPolicy::CanSetAcceptEvents(const ServerWindow* window) const { | 156 bool DefaultAccessPolicy::CanSetAcceptEvents(const ServerWindow* window) const { |
| 153 return WasCreatedByThisClient(window) || | 157 return WasCreatedByThisClient(window) || |
| 154 delegate_->HasRootForAccessPolicy(window); | 158 delegate_->HasRootForAccessPolicy(window); |
| 155 } | 159 } |
| 156 | 160 |
| 157 bool DefaultAccessPolicy::CanSetCursorProperties( | 161 bool DefaultAccessPolicy::CanSetCursorProperties( |
| 158 const ServerWindow* window) const { | 162 const ServerWindow* window) const { |
| 159 return WasCreatedByThisClient(window) || | 163 return WasCreatedByThisClient(window) || |
| 160 delegate_->HasRootForAccessPolicy(window); | 164 delegate_->HasRootForAccessPolicy(window); |
| 161 } | 165 } |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 bool DefaultAccessPolicy::IsValidIdForNewWindow( | 208 bool DefaultAccessPolicy::IsValidIdForNewWindow( |
| 205 const ClientWindowId& id) const { | 209 const ClientWindowId& id) const { |
| 206 // Clients using DefaultAccessPolicy only see windows they have created (for | 210 // Clients using DefaultAccessPolicy only see windows they have created (for |
| 207 // the embed point they choose the id), so it's ok for clients to use whatever | 211 // the embed point they choose the id), so it's ok for clients to use whatever |
| 208 // id they want. | 212 // id they want. |
| 209 return true; | 213 return true; |
| 210 } | 214 } |
| 211 | 215 |
| 212 } // namespace ws | 216 } // namespace ws |
| 213 } // namespace ui | 217 } // namespace ui |
| OLD | NEW |