| Index: ash/test/ui_controls_factory_ash.cc
|
| diff --git a/ash/test/ui_controls_factory_ash.cc b/ash/test/ui_controls_factory_ash.cc
|
| index 26f8c245b0b4644670361dc61ba57dcc00318177..2ac98c85af60ead2ff62b0c4fc6f6cb701d284b0 100644
|
| --- a/ash/test/ui_controls_factory_ash.cc
|
| +++ b/ash/test/ui_controls_factory_ash.cc
|
| @@ -97,7 +97,7 @@ class UIControlsAsh : public UIControlsAura {
|
| }
|
|
|
| bool SendMouseEvents(MouseButton type, int state) override {
|
| - gfx::Point p(ash::Shell::GetScreen()->GetCursorScreenPoint());
|
| + gfx::Point p(gfx::Screen::GetScreen()->GetCursorScreenPoint());
|
| UIControlsAura* ui_controls = GetUIControlsAt(p);
|
| return ui_controls && ui_controls->SendMouseEvents(type, state);
|
| }
|
| @@ -112,7 +112,7 @@ class UIControlsAsh : public UIControlsAura {
|
| }
|
|
|
| bool SendMouseClick(MouseButton type) override {
|
| - gfx::Point p(ash::Shell::GetScreen()->GetCursorScreenPoint());
|
| + gfx::Point p(gfx::Screen::GetScreen()->GetCursorScreenPoint());
|
| UIControlsAura* ui_controls = GetUIControlsAt(p);
|
| return ui_controls && ui_controls->SendMouseClick(type);
|
| }
|
|
|