Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Unified Diff: ui/gfx/screen_ios.mm

Issue 1935083003: gfx::Screen: Replace GetWindowUnderCursor() with IsWindowUnderCursor(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fixes Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/gfx/screen_ios.mm
diff --git a/ui/gfx/screen_ios.mm b/ui/gfx/screen_ios.mm
index 6ace9c8ed2975a68a9be4b7216539cf2ebd03581..ec00c1b6401d356231c09eb2ea1fd2d0d7be4bea 100644
--- a/ui/gfx/screen_ios.mm
+++ b/ui/gfx/screen_ios.mm
@@ -17,9 +17,9 @@ class ScreenIos : public gfx::Screen {
return gfx::Point(0, 0);
}
- gfx::NativeWindow GetWindowUnderCursor() override {
+ bool IsWindowUnderCursor(gfx::NativeWindow window) override {
NOTIMPLEMENTED();
- return gfx::NativeWindow();
+ return false;
}
gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point) override {

Powered by Google App Engine
This is Rietveld 408576698