Index: ui/views/bubble/bubble_frame_view.cc |
diff --git a/ui/views/bubble/bubble_frame_view.cc b/ui/views/bubble/bubble_frame_view.cc |
index dff1e993c38982f0e6869eebfe6b7b7a9b7b85c6..39fa447528b3256ebf51e1152d5f5f037ea90f62 100644 |
--- a/ui/views/bubble/bubble_frame_view.cc |
+++ b/ui/views/bubble/bubble_frame_view.cc |
@@ -125,8 +125,6 @@ gfx::Rect BubbleFrameView::GetWindowBoundsForClientBounds( |
int BubbleFrameView::NonClientHitTest(const gfx::Point& point) { |
if (!bounds().Contains(point)) |
return HTNOWHERE; |
- if (close_->visible() && close_->GetMirroredBounds().Contains(point)) |
- return HTCLOSE; |
msw
2015/03/31 16:45:30
Hmm, do screen readers, software that assists the
dmazzoni
2015/03/31 16:55:46
Yes, they do call hit testing functions so at firs
msw
2015/03/31 16:57:22
We could hide the other tooltip when the native on
benwells
2015/03/31 22:06:57
I think that would look like adding an #if !define
msw
2015/03/31 22:11:26
What do browser frames do? Those seem to show nati
benwells
2015/04/08 00:19:13
Ah, yes the frames use the native hint as well. I'
|
// Allow dialogs to show the system menu and be dragged. |
if (GetWidget()->widget_delegate()->AsDialogDelegate()) { |