Index: chrome/browser/ui/views/infobars/infobar_view.h |
=================================================================== |
--- chrome/browser/ui/views/infobars/infobar_view.h (revision 104959) |
+++ chrome/browser/ui/views/infobars/infobar_view.h (working copy) |
@@ -48,13 +48,12 @@ |
virtual ~InfoBarView(); |
// Creates a label with the appropriate font and color for an infobar. |
- static views::Label* CreateLabel(const string16& text); |
+ views::Label* CreateLabel(const string16& text) const; |
// Creates a link with the appropriate font and color for an infobar. |
// NOTE: Subclasses must ignore link clicks if we're unowned. |
- static views::Link* CreateLink(const string16& text, |
- views::LinkListener* listener, |
- const SkColor& background_color); |
+ views::Link* CreateLink(const string16& text, |
+ views::LinkListener* listener) const; |
// Creates a menu button with an infobar-specific appearance. |
// NOTE: Subclasses must ignore button presses if we're unowned. |