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

Unified Diff: chrome/browser/ui/cocoa/infobars/infobar_gradient_view.mm

Issue 7130001: Make infobar background gray (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: '' Created 9 years, 6 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/ui/cocoa/infobars/infobar_gradient_view.mm
===================================================================
--- chrome/browser/ui/cocoa/infobars/infobar_gradient_view.mm (revision 88097)
+++ chrome/browser/ui/cocoa/infobars/infobar_gradient_view.mm (working copy)
@@ -5,38 +5,21 @@
#include "chrome/browser/ui/cocoa/infobars/infobar_gradient_view.h"
#include "base/memory/scoped_nsobject.h"
+#include "chrome/browser/tab_contents/infobar.h"
#import "chrome/browser/themes/theme_service.h"
#import "chrome/browser/ui/cocoa/infobars/infobar_container_controller.h"
#import "chrome/browser/ui/cocoa/themed_window.h"
+#include "skia/ext/skia_utils_mac.h"
-namespace {
-
-const double kBackgroundColorTop[3] =
- {255.0 / 255.0, 242.0 / 255.0, 183.0 / 255.0};
-const double kBackgroundColorBottom[3] =
- {250.0 / 255.0, 230.0 / 255.0, 145.0 / 255.0};
-}
-
@implementation InfoBarGradientView
-- (id)initWithFrame:(NSRect)frameRect {
- if ((self = [super initWithFrame:frameRect])) {
- NSColor* startingColor =
- [NSColor colorWithCalibratedRed:kBackgroundColorTop[0]
- green:kBackgroundColorTop[1]
- blue:kBackgroundColorTop[2]
- alpha:1.0];
- NSColor* endingColor =
- [NSColor colorWithCalibratedRed:kBackgroundColorBottom[0]
- green:kBackgroundColorBottom[1]
- blue:kBackgroundColorBottom[2]
- alpha:1.0];
- scoped_nsobject<NSGradient> gradient(
- [[NSGradient alloc] initWithStartingColor:startingColor
- endingColor:endingColor]);
- [self setGradient:gradient];
- }
- return self;
+- (void)setInfobarType:(InfoBarDelegate::Type)infobarType {
+ SkColor topColor = GetInfoBarTopColor(infobarType);
+ SkColor bottomColor = GetInfoBarBottomColor(infobarType);
+ scoped_nsobject<NSGradient> gradient([[NSGradient alloc]
+ initWithStartingColor:gfx::SkColorToCalibratedNSColor(topColor)
+ endingColor:gfx::SkColorToCalibratedNSColor(bottomColor)]);
+ [self setGradient:gradient];
}
- (NSColor*)strokeColor {
« no previous file with comments | « chrome/browser/ui/cocoa/infobars/infobar_gradient_view.h ('k') | chrome/browser/ui/cocoa/translate/translate_infobar_base.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698