| Index: chrome/browser/ui/views/toolbar/toolbar_view.h
|
| diff --git a/chrome/browser/ui/views/toolbar/toolbar_view.h b/chrome/browser/ui/views/toolbar/toolbar_view.h
|
| index 2fcdc3ad54f737a6bbb46d794bfe3aad143cd055..dd2e825de00f9e99730854c70659aef0b5881878 100644
|
| --- a/chrome/browser/ui/views/toolbar/toolbar_view.h
|
| +++ b/chrome/browser/ui/views/toolbar/toolbar_view.h
|
| @@ -24,6 +24,7 @@ class BrowserActionsContainer;
|
| class Browser;
|
| class HomeImageButton;
|
| class ReloadButton;
|
| +class SiteChipView;
|
| class ToolbarButton;
|
| class WrenchMenu;
|
| class WrenchMenuModel;
|
| @@ -85,6 +86,7 @@ class ToolbarView : public views::AccessiblePaneView,
|
| BrowserActionsContainer* browser_actions() const { return browser_actions_; }
|
| ReloadButton* reload_button() const { return reload_; }
|
| LocationBarView* location_bar() const { return location_bar_; }
|
| + SiteChipView* site_chip() const { return site_chip_view_; }
|
| views::MenuButton* app_menu() const;
|
|
|
| // Overridden from AccessiblePaneView
|
| @@ -212,6 +214,7 @@ class ToolbarView : public views::AccessiblePaneView,
|
| ReloadButton* reload_;
|
| HomeImageButton* home_;
|
| LocationBarView* location_bar_;
|
| + SiteChipView* site_chip_view_;
|
| BrowserActionsContainer* browser_actions_;
|
| WrenchToolbarButton* app_menu_;
|
| Browser* browser_;
|
|
|