Index: chrome/browser/ui/cocoa/find_bar/find_bar_view.mm |
diff --git a/chrome/browser/ui/cocoa/find_bar/find_bar_view.mm b/chrome/browser/ui/cocoa/find_bar/find_bar_view.mm |
index 0c7838d9eb75fcb3ceb07c8f0668f0a14257dd1b..4250a576f073cabd9270094558d12b3a896e90db 100644 |
--- a/chrome/browser/ui/cocoa/find_bar/find_bar_view.mm |
+++ b/chrome/browser/ui/cocoa/find_bar/find_bar_view.mm |
@@ -20,9 +20,9 @@ CGFloat kCurveSize = 8; |
- (id)initWithFrame:(NSRect)frame { |
if ((self = [super initWithFrame:frame])) { |
// Give this view its own layer so that it can appear over the web contents |
- // view's layer. Layer squashing is not necessary for this view because |
+ // view's layer. Layer squashing is not helpful for this view because |
// NSTextField will correctly anti-alias text on 10.8 and beyond. |
- [self cr_setWantsLayer:YES]; |
+ [self setWantsLayer:YES]; |
} |
return self; |
} |