Chromium Code Reviews| Index: chrome/browser/ui/views/location_bar/location_bar_view.h |
| diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.h b/chrome/browser/ui/views/location_bar/location_bar_view.h |
| index f9833291145a4d34bf2c06ad5a43af4d809cc48f..9aa641035f61f21a93b7dc0fffa584bd04384900 100644 |
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.h |
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.h |
| @@ -46,6 +46,7 @@ class PageActionImageView; |
| class Profile; |
| class ScriptBubbleIconView; |
| class SelectedKeywordView; |
| +class SiteChipView; |
| class StarView; |
| class TemplateURLService; |
| class TranslateIconView; |
| @@ -198,6 +199,10 @@ class LocationBarView : public LocationBar, |
| // The translate icon. It may not be visible. |
| TranslateIconView* translate_icon_view() { return translate_icon_view_; } |
| + void SetSiteChip(SiteChipView* site_chip_view) { |
|
Peter Kasting
2013/12/06 02:16:52
Inlined functions should always be named unix_hack
Greg Billock
2013/12/06 19:54:26
Done.
|
| + site_chip_view_ = site_chip_view; |
| + } |
| + |
| // Shows the bookmark prompt. |
| void ShowBookmarkPrompt(); |
| @@ -487,6 +492,9 @@ class LocationBarView : public LocationBar, |
| // The script bubble. |
| ScriptBubbleIconView* script_bubble_icon_view_; |
| + // The Site Chip. |
| + SiteChipView* site_chip_view_; |
| + |
| // The icon for Translate. |
| TranslateIconView* translate_icon_view_; |