| 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/display/screen_position_controller.h" | 5 #include "ash/display/screen_position_controller.h" |
| 6 | 6 |
| 7 #include "ash/public/cpp/shell_window_ids.h" | 7 #include "ash/public/cpp/shell_window_ids.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "ash/shell_port.h" | 9 #include "ash/shell_port.h" |
| 10 #include "ash/wm/window_positioning_utils.h" | 10 #include "ash/wm/window_positioning_utils.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 void ScreenPositionController::SetBounds(aura::Window* window, | 112 void ScreenPositionController::SetBounds(aura::Window* window, |
| 113 const gfx::Rect& bounds, | 113 const gfx::Rect& bounds, |
| 114 const display::Display& display) { | 114 const display::Display& display) { |
| 115 if (!window->parent()->GetProperty(kUsesScreenCoordinatesKey)) { | 115 if (!window->parent()->GetProperty(kUsesScreenCoordinatesKey)) { |
| 116 window->SetBounds(bounds); | 116 window->SetBounds(bounds); |
| 117 return; | 117 return; |
| 118 } | 118 } |
| 119 | 119 |
| 120 wm::SetBoundsInScreen(WmWindow::Get(window), bounds, display); | 120 wm::SetBoundsInScreen(window, bounds, display); |
| 121 } | 121 } |
| 122 | 122 |
| 123 } // namespace ash | 123 } // namespace ash |
| OLD | NEW |