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

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 581792862f2beb792d9833f8cc8be1015b48d7c8..f9448a4759908e0d9e7d605136a0e3ef55b73221 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 HomeButton;
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_;
HomeButton* 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