| Index: ash/screen_ash.cc
|
| diff --git a/ash/screen_ash.cc b/ash/screen_ash.cc
|
| index 34ce7c65ad4c47b69ec80a3618b3f79a39cef813..231b806e9fa5cae4383940e2c2c7ab64662859e8 100644
|
| --- a/ash/screen_ash.cc
|
| +++ b/ash/screen_ash.cc
|
| @@ -5,6 +5,7 @@
|
| #include "ash/screen_ash.h"
|
|
|
| #include "ash/shell.h"
|
| +#include "ash/wm/coordinate_conversion.h"
|
| #include "ash/wm/shelf_layout_manager.h"
|
| #include "base/logging.h"
|
| #include "ui/aura/client/screen_position_client.h"
|
| @@ -83,7 +84,7 @@ gfx::Point ScreenAsh::GetCursorScreenPoint() {
|
|
|
| gfx::NativeWindow ScreenAsh::GetWindowAtCursorScreenPoint() {
|
| const gfx::Point point = gfx::Screen::GetCursorScreenPoint();
|
| - return Shell::GetRootWindowAt(point)->GetTopWindowContainingPoint(point);
|
| + return wm::GetRootWindowAt(point)->GetTopWindowContainingPoint(point);
|
| }
|
|
|
| int ScreenAsh::GetNumDisplays() {
|
|
|