Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4037)

Unified Diff: chrome/browser/ui/views/toolbar/toolbar_view.h

Issue 75873002: [SiteChip] Add the basic painting of the site chip button (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698