| 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 9aaef486fc63a89b486d25611f4cd753c1add0a6..a4aad00015b6a10d548303e599dc967bea97c529 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 set_site_chip_view(SiteChipView* site_chip_view) {
|
| + site_chip_view_ = site_chip_view;
|
| + }
|
| +
|
| // Shows the bookmark prompt.
|
| void ShowBookmarkPrompt();
|
|
|
| @@ -488,6 +493,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_;
|
|
|
|
|