diff options
Diffstat (limited to 'chrome/browser/ui/views/infobars/infobar_background.h')
-rw-r--r-- | chrome/browser/ui/views/infobars/infobar_background.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/ui/views/infobars/infobar_background.h b/chrome/browser/ui/views/infobars/infobar_background.h index e23fed2..f948129 100644 --- a/chrome/browser/ui/views/infobars/infobar_background.h +++ b/chrome/browser/ui/views/infobars/infobar_background.h @@ -16,6 +16,7 @@ class InfoBarBackground : public views::Background { explicit InfoBarBackground(InfoBarDelegate::Type infobar_type); virtual ~InfoBarBackground(); + void set_separator_color(SkColor color) { separator_color_ = color; } static SkColor GetTopColor(InfoBarDelegate::Type infobar_type); static SkColor GetBottomColor(InfoBarDelegate::Type infobar_type); @@ -23,6 +24,7 @@ class InfoBarBackground : public views::Background { // views::Background: virtual void Paint(gfx::Canvas* canvas, views::View* view) const; + SkColor separator_color_; SkColor top_color_; SkColor bottom_color_; |