| 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_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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |