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

Unified Diff: chrome/browser/cocoa/location_bar/image_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/image_decoration.h
diff --git a/chrome/browser/cocoa/location_bar/image_decoration.h b/chrome/browser/cocoa/location_bar/image_decoration.h
new file mode 100644
index 0000000000000000000000000000000000000000..339530758eb74f081a8c7614a0cb0c651f67e1d1
--- /dev/null
+++ b/chrome/browser/cocoa/location_bar/image_decoration.h
@@ -0,0 +1,35 @@
+// 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_IMAGE_DECORATION_H_
+#define CHROME_BROWSER_COCOA_LOCATION_BAR_IMAGE_DECORATION_H_
+
+#import "base/scoped_nsobject.h"
+#include "chrome/browser/cocoa/location_bar/location_bar_decoration.h"
+
+// |LocationBarDecoration| which sizes and draws itself according to
+// an |NSImage|.
+
+class ImageDecoration : public LocationBarDecoration {
+ public:
+ ImageDecoration();
+ virtual ~ImageDecoration();
+
+ NSImage* GetImage();
+ void SetImage(NSImage* image);
+
+ // Returns the part of |frame| the image is drawn in.
+ NSRect GetDrawRectInFrame(NSRect frame);
+
+ // Implement |LocationBarDecoration|.
+ virtual CGFloat GetWidthForSpace(CGFloat width);
+ virtual void DrawInFrame(NSRect frame, NSView* control_view);
+
+ private:
+ scoped_nsobject<NSImage> image_;
+
+ DISALLOW_COPY_AND_ASSIGN(ImageDecoration);
+};
+
+#endif // CHROME_BROWSER_COCOA_LOCATION_BAR_IMAGE_DECORATION_H_

Powered by Google App Engine
This is Rietveld 408576698