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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_section_view.mm

Issue 1508893003: Use proper namespace in skia/ext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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/autofill/autofill_section_view.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_view.mm b/chrome/browser/ui/cocoa/autofill/autofill_section_view.mm
index e10435a276ad23f1446c4977823d59ab0e878545..b69ab99c66c8a1ca993c02bbdb619df7e5862a3e 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_section_view.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_section_view.mm
@@ -44,7 +44,7 @@ SkColor kShadingColor = 0x07000000; // SkColorSetARGB(7, 0, 0, 0);
- (NSColor*)hoverColor {
// Shading color is specified as a alpha component color, so premultiply.
- NSColor* shadingColor = gfx::SkColorToCalibratedNSColor(kShadingColor);
+ NSColor* shadingColor = skia::SkColorToCalibratedNSColor(kShadingColor);
NSColor* blendedColor = [[[self window] backgroundColor]
blendedColorWithFraction:[shadingColor alphaComponent]
ofColor:shadingColor];

Powered by Google App Engine
This is Rietveld 408576698