Index: chrome/browser/cocoa/gradient_button_cell.h |
=================================================================== |
--- chrome/browser/cocoa/gradient_button_cell.h (revision 21106) |
+++ chrome/browser/cocoa/gradient_button_cell.h (working copy) |
@@ -30,9 +30,17 @@ |
BOOL isMouseInside_; |
scoped_nsobject<NSTrackingArea> trackingArea_; |
BOOL shouldTheme_; |
+ |
+ scoped_nsobject<NSImage> underlayImage_; |
} |
+ |
// Turn off theming. Temporary work-around. |
- (void)setShouldTheme:(BOOL)shouldTheme; |
+ |
+// An image to underlay beneath the existing image; not themed. May be nil. |
+- (NSImage*)underlayImage; |
+- (void)setUnderlayImage:(NSImage*)image; |
+ |
@end |
@interface GradientButtonCell(TestingAPI) |