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

Unified Diff: blimp/engine/app/ui/blimp_screen.cc

Issue 1935083003: gfx::Screen: Replace GetWindowUnderCursor() with IsWindowUnderCursor(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Null checks 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: blimp/engine/app/ui/blimp_screen.cc
diff --git a/blimp/engine/app/ui/blimp_screen.cc b/blimp/engine/app/ui/blimp_screen.cc
index b7d18b8111d64e2168324e3282b9fba0cc86d7a0..c10396af01298a574225b75bc9a1aa82ee9f769d 100644
--- a/blimp/engine/app/ui/blimp_screen.cc
+++ b/blimp/engine/app/ui/blimp_screen.cc
@@ -47,9 +47,9 @@ gfx::Point BlimpScreen::GetCursorScreenPoint() {
return gfx::Point();
}
-gfx::NativeWindow BlimpScreen::GetWindowUnderCursor() {
+bool BlimpScreen::IsWindowUnderCursor(gfx::NativeWindow window) {
NOTIMPLEMENTED();
- return gfx::NativeWindow(nullptr);
+ return false;
}
gfx::NativeWindow BlimpScreen::GetWindowAtScreenPoint(const gfx::Point& point) {

Powered by Google App Engine
This is Rietveld 408576698