Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Side by Side Diff: ash/wm/lock_layout_manager.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/wm/lock_layout_manager.h ('k') | ash/wm/lock_state_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/common/wm_shell.h"
8 #include "ash/common/wm_window.h"
7 #include "ash/wm/lock_window_state.h" 9 #include "ash/wm/lock_window_state.h"
8 #include "ash/wm/window_state.h" 10 #include "ash/wm/window_state.h"
9 #include "ash/wm/wm_event.h" 11 #include "ash/wm/wm_event.h"
10 #include "ash/wm_shell.h"
11 #include "ash/wm_window.h"
12 #include "ui/events/event.h" 12 #include "ui/events/event.h"
13 #include "ui/keyboard/keyboard_controller.h" 13 #include "ui/keyboard/keyboard_controller.h"
14 #include "ui/keyboard/keyboard_util.h" 14 #include "ui/keyboard/keyboard_util.h"
15 15
16 namespace ash { 16 namespace ash {
17 17
18 LockLayoutManager::LockLayoutManager(WmWindow* window) 18 LockLayoutManager::LockLayoutManager(WmWindow* window)
19 : wm::WmSnapToPixelLayoutManager(), 19 : wm::WmSnapToPixelLayoutManager(),
20 window_(window), 20 window_(window),
21 root_window_(window->GetRootWindow()), 21 root_window_(window->GetRootWindow()),
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 void LockLayoutManager::AdjustWindowsForWorkAreaChange( 112 void LockLayoutManager::AdjustWindowsForWorkAreaChange(
113 const wm::WMEvent* event) { 113 const wm::WMEvent* event) {
114 DCHECK(event->type() == wm::WM_EVENT_DISPLAY_BOUNDS_CHANGED || 114 DCHECK(event->type() == wm::WM_EVENT_DISPLAY_BOUNDS_CHANGED ||
115 event->type() == wm::WM_EVENT_WORKAREA_BOUNDS_CHANGED); 115 event->type() == wm::WM_EVENT_WORKAREA_BOUNDS_CHANGED);
116 116
117 for (WmWindow* child : window_->GetChildren()) 117 for (WmWindow* child : window_->GetChildren())
118 child->GetWindowState()->OnWMEvent(event); 118 child->GetWindowState()->OnWMEvent(event);
119 } 119 }
120 120
121 } // namespace ash 121 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/lock_layout_manager.h ('k') | ash/wm/lock_state_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698