diff options
Diffstat (limited to 'chrome/browser/cocoa/background_gradient_view.h')
-rw-r--r-- | chrome/browser/cocoa/background_gradient_view.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/background_gradient_view.h b/chrome/browser/cocoa/background_gradient_view.h index efff342..9c04b4d 100644 --- a/chrome/browser/cocoa/background_gradient_view.h +++ b/chrome/browser/cocoa/background_gradient_view.h @@ -6,11 +6,21 @@ #define CHROME_BROWSER_COCOA_BACKGROUND_GRADIENT_VIEW_H_ #import <Cocoa/Cocoa.h> +#import "third_party/GTM/AppKit/GTMTheme.h" // A custom view that draws a 'standard' background gradient. // Base class for other Chromium views. -@interface BackgroundGradientView : NSView +@interface BackgroundGradientView : NSView { + @private + BOOL showsDivider_; +} + +// The color used for the bottom stroke. Public so subclasses can use. +- (NSColor *)strokeColor; + +// Controls whether the bar draws a dividing line at the bottom. +@property(assign) BOOL showsDivider; @end #endif // CHROME_BROWSER_COCOA_BACKGROUND_GRADIENT_VIEW_H_ |