Index: chrome/browser/cocoa/bubble_view.mm |
=================================================================== |
--- chrome/browser/cocoa/bubble_view.mm (revision 26272) |
+++ chrome/browser/cocoa/bubble_view.mm (working copy) |
@@ -107,8 +107,8 @@ |
NSFont* textFont = [self font]; |
scoped_nsobject<NSShadow> textShadow([[NSShadow alloc] init]); |
[textShadow setShadowBlurRadius:0.0f]; |
- [textShadow setShadowColor:[textColor gtm_legibleTextColor]]; |
- [textShadow setShadowOffset:NSMakeSize(0.0f, -1.0f)]; |
+ [textShadow.get() setShadowColor:[textColor gtm_legibleTextColor]]; |
+ [textShadow.get() setShadowOffset:NSMakeSize(0.0f, -1.0f)]; |
NSDictionary* textDict = [NSDictionary dictionaryWithObjectsAndKeys: |
textColor, NSForegroundColorAttributeName, |