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 "ash/wm/lock_layout_manager.h" | 5 #include "ash/wm/lock_layout_manager.h" |
6 | 6 |
7 #include "ash/keyboard/keyboard_observer_register.h" | 7 #include "ash/keyboard/keyboard_observer_register.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ash/wm/lock_window_state.h" | 9 #include "ash/wm/lock_window_state.h" |
10 #include "ash/wm/window_state.h" | 10 #include "ash/wm/window_state.h" |
11 #include "ash/wm/window_state_aura.h" | |
12 #include "ash/wm/wm_event.h" | 11 #include "ash/wm/wm_event.h" |
13 #include "ash/wm_window.h" | 12 #include "ash/wm_window.h" |
14 #include "ui/events/event.h" | 13 #include "ui/events/event.h" |
15 #include "ui/keyboard/keyboard_controller.h" | 14 #include "ui/keyboard/keyboard_controller.h" |
16 #include "ui/keyboard/keyboard_util.h" | 15 #include "ui/keyboard/keyboard_util.h" |
17 | 16 |
18 namespace ash { | 17 namespace ash { |
19 | 18 |
20 LockLayoutManager::LockLayoutManager(aura::Window* window) | 19 LockLayoutManager::LockLayoutManager(aura::Window* window) |
21 : wm::WmSnapToPixelLayoutManager(), | 20 : wm::WmSnapToPixelLayoutManager(), |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 void LockLayoutManager::AdjustWindowsForWorkAreaChange( | 102 void LockLayoutManager::AdjustWindowsForWorkAreaChange( |
104 const wm::WMEvent* event) { | 103 const wm::WMEvent* event) { |
105 DCHECK(event->type() == wm::WM_EVENT_DISPLAY_BOUNDS_CHANGED || | 104 DCHECK(event->type() == wm::WM_EVENT_DISPLAY_BOUNDS_CHANGED || |
106 event->type() == wm::WM_EVENT_WORKAREA_BOUNDS_CHANGED); | 105 event->type() == wm::WM_EVENT_WORKAREA_BOUNDS_CHANGED); |
107 | 106 |
108 for (aura::Window* child : window_->children()) | 107 for (aura::Window* child : window_->children()) |
109 wm::GetWindowState(child)->OnWMEvent(event); | 108 wm::GetWindowState(child)->OnWMEvent(event); |
110 } | 109 } |
111 | 110 |
112 } // namespace ash | 111 } // namespace ash |
OLD | NEW |