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

Unified Diff: chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm

Issue 10805059: Merge 147628 - Disable blurring for extension bubbles (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 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 | « no previous file | chrome/browser/ui/cocoa/info_bubble_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm
===================================================================
--- chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm (revision 147881)
+++ chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm (working copy)
@@ -136,6 +136,11 @@
defer:YES]);
if (!window.get())
return nil;
+
+ // Don't blur the extension window background. This can interfer with OpenGL
+ // drawing on the window. See http://openradar.appspot.com/11920246
+ [window setHasBlurredBackground:NO];
+
anchoredAt = [parentWindow convertBaseToScreen:anchoredAt];
if ((self = [super initWithWindow:window
parentWindow:parentWindow
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/info_bubble_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698