| Index: chrome/browser/ui/views/location_bar/keyword_hint_view.h
|
| diff --git a/chrome/browser/ui/views/location_bar/keyword_hint_view.h b/chrome/browser/ui/views/location_bar/keyword_hint_view.h
|
| index c4628c2944f644531043e44a91f1a918d6259fb3..8e044c085fa25120d472544742240c9411d747ac 100644
|
| --- a/chrome/browser/ui/views/location_bar/keyword_hint_view.h
|
| +++ b/chrome/browser/ui/views/location_bar/keyword_hint_view.h
|
| @@ -36,8 +36,8 @@ class KeywordHintView : public views::CustomButton {
|
| KeywordHintView(views::ButtonListener* listener,
|
| Profile* profile,
|
| const gfx::FontList& font_list,
|
| - const gfx::FontList& bubble_font_list,
|
| - int tab_key_height,
|
| + const gfx::FontList& chip_font_list,
|
| + int chip_height,
|
| SkColor text_color,
|
| SkColor background_color);
|
| ~KeywordHintView() override;
|
| @@ -60,11 +60,10 @@ class KeywordHintView : public views::CustomButton {
|
| Profile* profile_;
|
|
|
| views::Label* leading_label_;
|
| - views::View* tab_key_view_;
|
| + views::Label* chip_view_;
|
| views::Label* trailing_label_;
|
|
|
| - // Height of the tab key view.
|
| - int tab_key_height_;
|
| + int chip_view_height_;
|
|
|
| base::string16 keyword_;
|
|
|
|
|