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

Unified Diff: chrome/browser/themes/theme_service_mac.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/themes/theme_service_mac.mm
===================================================================
--- chrome/browser/themes/theme_service_mac.mm (revision 88097)
+++ chrome/browser/themes/theme_service_mac.mm (working copy)
@@ -13,6 +13,7 @@
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/image.h"
+#include "skia/ext/skia_utils_mac.h"
NSString* const kBrowserThemeDidChangeNotification =
@"BrowserThemeDidChangeNotification";
@@ -132,11 +133,7 @@
if (is_default && !allow_default)
return nil;
- NSColor* color = [NSColor
- colorWithCalibratedRed:SkColorGetR(sk_color)/255.0
- green:SkColorGetG(sk_color)/255.0
- blue:SkColorGetB(sk_color)/255.0
- alpha:SkColorGetA(sk_color)/255.0];
+ NSColor* color = gfx::SkColorToCalibratedNSColor(sk_color);
// We loaded successfully. Cache the color.
if (color)

Powered by Google App Engine
This is Rietveld 408576698