| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ash/wm/event_client_impl.h" | 5 #include "ash/wm/event_client_impl.h" |
| 6 | 6 |
| 7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
| 8 #include "ash/shell_window_ids.h" | 8 #include "ash/shell_window_ids.h" |
| 9 #include "ui/aura/root_window.h" | 9 #include "ui/aura/root_window.h" |
| 10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 Shell::GetInstance()->GetContainer( | 31 Shell::GetInstance()->GetContainer( |
| 32 kShellWindowId_LockScreenRelatedContainersContainer); | 32 kShellWindowId_LockScreenRelatedContainersContainer); |
| 33 return lock_screen_containers->Contains(window) || | 33 return lock_screen_containers->Contains(window) || |
| 34 lock_screen_related_containers->Contains(window); | 34 lock_screen_related_containers->Contains(window); |
| 35 } | 35 } |
| 36 return true; | 36 return true; |
| 37 } | 37 } |
| 38 | 38 |
| 39 } // namespace internal | 39 } // namespace internal |
| 40 } // namespace ash | 40 } // namespace ash |
| OLD | NEW |