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

Unified Diff: chrome/browser/ui/views/location_bar/location_bar_view.h

Issue 92073003: [SiteChip] Draw site chip icon and site title. Drag support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use new image assets Created 7 years 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/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_;

Powered by Google App Engine
This is Rietveld 408576698