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

Unified Diff: chrome/browser/cocoa/location_bar/location_icon_decoration.mm

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_icon_decoration.mm
diff --git a/chrome/browser/cocoa/location_bar/location_icon_decoration.mm b/chrome/browser/cocoa/location_bar/location_icon_decoration.mm
index 7c04548ee80e47860b9a86398b43a88716f10519..9ec9794c7c92bf72fd2fd2c8eed77cb75c5230cb 100644
--- a/chrome/browser/cocoa/location_bar/location_icon_decoration.mm
+++ b/chrome/browser/cocoa/location_bar/location_icon_decoration.mm
@@ -7,7 +7,6 @@
#import "chrome/browser/cocoa/location_bar/location_icon_decoration.h"
#include "base/sys_string_conversions.h"
-#import "chrome/browser/cocoa/image_utils.h"
#import "chrome/browser/cocoa/location_bar/location_bar_view_mac.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#import "third_party/mozilla/NSPasteboard+Utils.h"
@@ -18,35 +17,6 @@ LocationIconDecoration::LocationIconDecoration(LocationBarViewMac* owner)
LocationIconDecoration::~LocationIconDecoration() {
}
-NSImage* LocationIconDecoration::GetImage() {
- return image_;
-}
-
-void LocationIconDecoration::SetImage(NSImage* image) {
- image_.reset([image retain]);
-}
-
-CGFloat LocationIconDecoration::GetWidthForSpace(CGFloat width) {
- NSImage* image = GetImage();
- if (image) {
- const CGFloat image_width = [image size].width;
- if (image_width >= width)
- return image_width;
- }
- return kOmittedWidth;
-}
-
-void LocationIconDecoration::DrawInFrame(NSRect frame, NSView* control_view) {
- NSImage* image = GetImage();
- const CGFloat delta_height = NSHeight(frame) - [image size].height;
- const CGFloat y_inset = std::floor(delta_height / 2.0);
- [image drawInRect:NSInsetRect(frame, 0.0, y_inset)
- fromRect:NSZeroRect // Entire image
- operation:NSCompositeSourceOver
- fraction:1.0
- neverFlipped:YES];
-}
-
bool LocationIconDecoration::IsDraggable() {
// Without a tab it will be impossible to get the information needed
// to perform a drag.
« no previous file with comments | « chrome/browser/cocoa/location_bar/location_icon_decoration.h ('k') | chrome/browser/cocoa/location_bar/star_decoration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698