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

Unified Diff: content/browser/web_contents/web_contents_view_aura.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 | « content/browser/web_contents/web_contents_view_aura.h ('k') | ui/app_list/app_list_bubble_border.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/web_contents/web_contents_view_aura.cc
diff --git a/content/browser/web_contents/web_contents_view_aura.cc b/content/browser/web_contents/web_contents_view_aura.cc
index 101e58b31e96cbb83321febfd26c845ac705f772..ef10a8e77aaffb92acc670b705160d4fc2b5fa62 100644
--- a/content/browser/web_contents/web_contents_view_aura.cc
+++ b/content/browser/web_contents/web_contents_view_aura.cc
@@ -323,7 +323,6 @@ void WebContentsViewAura::SizeContents(const gfx::Size& size) {
// Our size matches what we want but the renderers size may not match.
// Pretend we were resized so that the renderers size is updated too.
SizeChangedCommon(size);
-
}
}
@@ -558,6 +557,14 @@ void WebContentsViewAura::OnWindowVisibilityChanged(bool visible) {
else
web_contents_->HideContents();
}
+
+bool WebContentsViewAura::HasHitTestMask() const {
+ return false;
+}
+
+void WebContentsViewAura::GetHitTestMask(gfx::Path* mask) const {
+}
+
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, aura::client::DragDropDelegate implementation:
« no previous file with comments | « content/browser/web_contents/web_contents_view_aura.h ('k') | ui/app_list/app_list_bubble_border.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698