| Index: ui/display/screen_base.cc
|
| diff --git a/ui/display/screen_base.cc b/ui/display/screen_base.cc
|
| index 21c8c270f2c21cbf3d29c3f9ef696dceb51e5fd3..a746cc5f4872b522495b694d7bc7edd65ad0df33 100644
|
| --- a/ui/display/screen_base.cc
|
| +++ b/ui/display/screen_base.cc
|
| @@ -45,6 +45,11 @@ Display ScreenBase::GetDisplayNearestWindow(gfx::NativeView view) const {
|
| return GetPrimaryDisplay();
|
| }
|
|
|
| +Display ScreenBase::GetDisplayNearestView(gfx::NativeView view) const {
|
| + NOTIMPLEMENTED();
|
| + return GetDisplayNearestWindow(nullptr);
|
| +}
|
| +
|
| Display ScreenBase::GetDisplayNearestPoint(const gfx::Point& point) const {
|
| return *FindDisplayNearestPoint(display_list_.displays(), point);
|
| }
|
|
|