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

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

Issue 1924703002: Rename gfx::Display/Screen to display::Display/Screen in ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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_unittest.cc ('k') | ash/wm/maximize_mode/maximize_mode_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_window_state.h" 5 #include "ash/wm/lock_window_state.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/display/display_manager.h" 9 #include "ash/display/display_manager.h"
10 #include "ash/screen_util.h" 10 #include "ash/screen_util.h"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 wm::WindowStateType LockWindowState::GetMaximizedOrCenteredWindowType( 169 wm::WindowStateType LockWindowState::GetMaximizedOrCenteredWindowType(
170 wm::WindowState* window_state) { 170 wm::WindowState* window_state) {
171 return window_state->CanMaximize() ? wm::WINDOW_STATE_TYPE_MAXIMIZED : 171 return window_state->CanMaximize() ? wm::WINDOW_STATE_TYPE_MAXIMIZED :
172 wm::WINDOW_STATE_TYPE_NORMAL; 172 wm::WINDOW_STATE_TYPE_NORMAL;
173 } 173 }
174 174
175 gfx::Rect GetBoundsForLockWindow(aura::Window* window) { 175 gfx::Rect GetBoundsForLockWindow(aura::Window* window) {
176 DisplayManager* display_manager = Shell::GetInstance()->display_manager(); 176 DisplayManager* display_manager = Shell::GetInstance()->display_manager();
177 if (display_manager->IsInUnifiedMode()) { 177 if (display_manager->IsInUnifiedMode()) {
178 const gfx::Display& first = 178 const display::Display& first =
179 display_manager->software_mirroring_display_list()[0]; 179 display_manager->software_mirroring_display_list()[0];
180 return first.bounds(); 180 return first.bounds();
181 } else { 181 } else {
182 return ScreenUtil::GetDisplayBoundsInParent(window); 182 return ScreenUtil::GetDisplayBoundsInParent(window);
183 } 183 }
184 } 184 }
185 185
186 void LockWindowState::UpdateBounds(wm::WindowState* window_state) { 186 void LockWindowState::UpdateBounds(wm::WindowState* window_state) {
187 if (!window_state->IsMaximized() && !window_state->IsFullscreen()) 187 if (!window_state->IsMaximized() && !window_state->IsFullscreen())
188 return; 188 return;
(...skipping 10 matching lines...) Expand all
199 gfx::Rect bounds = ScreenUtil::GetShelfDisplayBoundsInRoot( 199 gfx::Rect bounds = ScreenUtil::GetShelfDisplayBoundsInRoot(
200 ash::wm::WmWindowAura::GetAuraWindow(window_state->window())); 200 ash::wm::WmWindowAura::GetAuraWindow(window_state->window()));
201 201
202 bounds.set_height(bounds.height() - keyboard_bounds.height()); 202 bounds.set_height(bounds.height() - keyboard_bounds.height());
203 203
204 VLOG(1) << "Updating window bounds to: " << bounds.ToString(); 204 VLOG(1) << "Updating window bounds to: " << bounds.ToString();
205 window_state->SetBoundsDirect(bounds); 205 window_state->SetBoundsDirect(bounds);
206 } 206 }
207 207
208 } // namespace ash 208 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/lock_layout_manager_unittest.cc ('k') | ash/wm/maximize_mode/maximize_mode_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698