| Index: ui/aura/window.cc
|
| diff --git a/ui/aura/window.cc b/ui/aura/window.cc
|
| index 83a532b0524371c09cd0bb47625a93eedcd6e9f9..e12dd7dbe79546c41ac712892865bb826631de66 100644
|
| --- a/ui/aura/window.cc
|
| +++ b/ui/aura/window.cc
|
| @@ -313,11 +313,8 @@ void Window::SetBoundsInScreen(const gfx::Rect& new_bounds_in_screen,
|
| if (root) {
|
| aura::client::ScreenPositionClient* screen_position_client =
|
| aura::client::GetScreenPositionClient(root);
|
| - if (screen_position_client) {
|
| - screen_position_client->SetBounds(this, new_bounds_in_screen,
|
| - dst_display);
|
| - return;
|
| - }
|
| + screen_position_client->SetBounds(this, new_bounds_in_screen, dst_display);
|
| + return;
|
| }
|
| SetBounds(new_bounds_in_screen);
|
| }
|
|
|