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

Unified Diff: chrome/browser/cocoa/location_bar/location_bar_view_mac.h

Issue 2971004: [Mac] Star as a rhs-decoration in AutocompleteTextFieldCell. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Changes for rohit, unit-test tweaks. Created 10 years, 5 months 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/cocoa/location_bar/location_bar_view_mac.h
diff --git a/chrome/browser/cocoa/location_bar/location_bar_view_mac.h b/chrome/browser/cocoa/location_bar/location_bar_view_mac.h
index 684aff5b733bb0b878e7ea85e0ce0c88effef2be..67530db342a02cf125b38d90254ed0fd49d87269 100644
--- a/chrome/browser/cocoa/location_bar/location_bar_view_mac.h
+++ b/chrome/browser/cocoa/location_bar/location_bar_view_mac.h
@@ -31,6 +31,7 @@ class EVBubbleDecoration;
class LocationIconDecoration;
class Profile;
class SelectedKeywordDecoration;
+class StarDecoration;
class ToolbarModel;
// A C++ bridge class that represents the location bar UI element to
@@ -199,30 +200,6 @@ class LocationBarViewMac : public AutocompleteEditController,
DISALLOW_COPY_AND_ASSIGN(LocationBarImageView);
};
- // Used to display the bookmark star in the RHS.
- class StarIconView : public LocationBarImageView {
- public:
- explicit StarIconView(CommandUpdater* command_updater);
- virtual ~StarIconView() {}
-
- // Shows the bookmark bubble.
- virtual void OnMousePressed(NSRect bounds);
-
- // Set the image and tooltip based on |starred|.
- void SetStarred(bool starred);
-
- virtual NSString* GetToolTip();
-
- private:
- // For bringing up bookmark bar.
- CommandUpdater* command_updater_; // Weak, owned by Browser.
-
- // The string to show for a tooltip.
- scoped_nsobject<NSString> tooltip_;
-
- DISALLOW_COPY_AND_ASSIGN(StarIconView);
- };
-
// PageActionImageView is used to display the icon for a given Page Action
// and notify the extension when the icon is clicked.
class PageActionImageView : public LocationBarImageView,
@@ -426,7 +403,7 @@ class LocationBarViewMac : public AutocompleteEditController,
scoped_ptr<EVBubbleDecoration> ev_bubble_decoration_;
// Bookmark star right of page actions.
- StarIconView star_icon_view_;
+ scoped_ptr<StarDecoration> star_decoration_;
// Any installed Page Actions.
PageActionViewList page_action_views_;

Powered by Google App Engine
This is Rietveld 408576698