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

Unified Diff: ui/views/widget/widget.cc

Issue 10566009: app_list: Fix shadow bleeds over launcher button and steals mouse events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix aura_demo compilation Created 8 years, 6 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
« no previous file with comments | « ui/views/widget/widget.h ('k') | ui/views/widget/widget_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/widget.cc
diff --git a/ui/views/widget/widget.cc b/ui/views/widget/widget.cc
index 62a395c305a6026dbf0ac4c336a892fc3aed9b73..6f9938ba6c522d7caf55fe72067c8a453d167dad 100644
--- a/ui/views/widget/widget.cc
+++ b/ui/views/widget/widget.cc
@@ -1130,6 +1130,15 @@ InputMethod* Widget::GetInputMethodDirect() {
return input_method_.get();
}
+bool Widget::HasHitTestMask() const {
+ return widget_delegate_->HasHitTestMask();
+}
+
+void Widget::GetHitTestMask(gfx::Path* mask) const {
+ DCHECK(mask);
+ widget_delegate_->GetHitTestMask(mask);
+}
+
Widget* Widget::AsWidget() {
return this;
}
« no previous file with comments | « ui/views/widget/widget.h ('k') | ui/views/widget/widget_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698