| Index: ash/host/ash_window_tree_host_win.cc
|
| diff --git a/ash/host/ash_window_tree_host_win.cc b/ash/host/ash_window_tree_host_win.cc
|
| index 211fff4efaa4810457f001d215bec4fe873d3a01..ff1e16312540df319ea513547b68dd1989aeef39 100644
|
| --- a/ash/host/ash_window_tree_host_win.cc
|
| +++ b/ash/host/ash_window_tree_host_win.cc
|
| @@ -46,13 +46,13 @@ void AshWindowTreeHostWin::ToggleFullScreen() {
|
| SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED);
|
| }
|
|
|
| -void AshWindowTreeHostWin::SetBounds(const gfx::Rect& bounds) {
|
| +void AshWindowTreeHostWin::SetBoundsInPixels(const gfx::Rect& bounds) {
|
| if (fullscreen_) {
|
| saved_window_rect_.right = saved_window_rect_.left + bounds.width();
|
| saved_window_rect_.bottom = saved_window_rect_.top + bounds.height();
|
| return;
|
| }
|
| - AshWindowTreeHostPlatform::SetBounds(bounds);
|
| + AshWindowTreeHostPlatform::SetBoundsInPixels(bounds);
|
| }
|
|
|
| } // namespace ash
|
|
|