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

Unified Diff: chrome/browser/ui/views/fullscreen_exit_bubble_views.cc

Issue 10827198: Change View::HitTest to View::HitTestRect (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed errors reported by trybots Created 8 years, 4 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: chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
diff --git a/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc b/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
index 45ce38544b24c5d03c168a3414bf4617440feb69..34c6eadf47d183632d6328e0e7295aeb130a4b8d 100644
--- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
+++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.cc
@@ -363,7 +363,7 @@ gfx::Point FullscreenExitBubbleViews::GetCursorScreenPoint() {
}
bool FullscreenExitBubbleViews::WindowContainsPoint(gfx::Point pos) {
- return root_view_->HitTest(pos);
+ return root_view_->HitTestPoint(pos);
}
bool FullscreenExitBubbleViews::IsWindowActive() {

Powered by Google App Engine
This is Rietveld 408576698