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

Unified Diff: chrome/browser/cocoa/location_bar/star_decoration.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/star_decoration.h
diff --git a/chrome/browser/cocoa/location_bar/star_decoration.h b/chrome/browser/cocoa/location_bar/star_decoration.h
new file mode 100644
index 0000000000000000000000000000000000000000..e39f9a805eb914dc46d9188f64d0a2bb442c8f7a
--- /dev/null
+++ b/chrome/browser/cocoa/location_bar/star_decoration.h
@@ -0,0 +1,42 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_STAR_DECORATION_H_
+#define CHROME_BROWSER_COCOA_LOCATION_BAR_STAR_DECORATION_H_
+
+#import <Cocoa/Cocoa.h>
+
+#include "chrome/browser/cocoa/location_bar/image_decoration.h"
+
+class CommandUpdater;
+
+// Star icon on the right side of the field.
+
+class StarDecoration : public ImageDecoration {
+ public:
+ explicit StarDecoration(CommandUpdater* command_updater);
+ virtual ~StarDecoration();
+
+ // Sets the image and tooltip based on |starred|.
+ void SetStarred(bool starred);
+
+ // Get the point where the bookmark bubble should point within the
+ // decoration's frame.
+ NSPoint GetBubblePointInFrame(NSRect frame);
+
+ // Implement |LocationBarDecoration|.
+ virtual bool OnMousePressed(NSRect frame);
+ 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(StarDecoration);
+};
+
+#endif // CHROME_BROWSER_COCOA_LOCATION_BAR_STAR_DECORATION_H_
« no previous file with comments | « chrome/browser/cocoa/location_bar/location_icon_decoration.mm ('k') | chrome/browser/cocoa/location_bar/star_decoration.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698