| Index: chrome/browser/ui/views/location_bar/keyword_hint_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/keyword_hint_view.cc b/chrome/browser/ui/views/location_bar/keyword_hint_view.cc
|
| index ddb6903142374d48b1d6f6311939900ee18e732b..3ec9238e726e19a7d5bbed14a86a8f79f355b3fe 100644
|
| --- a/chrome/browser/ui/views/location_bar/keyword_hint_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/keyword_hint_view.cc
|
| @@ -54,13 +54,15 @@ gfx::Size TabKeyBubbleView::GetPreferredSize() const {
|
|
|
| } // namespace
|
|
|
| -KeywordHintView::KeywordHintView(Profile* profile,
|
| +KeywordHintView::KeywordHintView(views::ButtonListener* listener,
|
| + Profile* profile,
|
| const gfx::FontList& font_list,
|
| const gfx::FontList& bubble_font_list,
|
| int bubble_height,
|
| SkColor text_color,
|
| SkColor background_color)
|
| - : profile_(profile),
|
| + : CustomButton(listener),
|
| + profile_(profile),
|
| leading_label_(nullptr),
|
| tab_key_view_(nullptr),
|
| trailing_label_(nullptr),
|
|
|