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

Unified Diff: ui/app_list/cocoa/app_list_pager_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: ui/app_list/cocoa/app_list_pager_view.mm
diff --git a/ui/app_list/cocoa/app_list_pager_view.mm b/ui/app_list/cocoa/app_list_pager_view.mm
index abd4a4d28f5956e837a0ae498c0fa24e8ba7a122..82e33f6b3dab59c96a717edf434b2fc95d4b6f6c 100644
--- a/ui/app_list/cocoa/app_list_pager_view.mm
+++ b/ui/app_list/cocoa/app_list_pager_view.mm
@@ -147,7 +147,7 @@ const CGFloat kButtonStripPadding = 20;
app_list::kPagerHoverColor :
app_list::kPagerNormalColor;
- [gfx::SkColorToSRGBNSColor(backgroundColor) set];
+ [skia::SkColorToSRGBNSColor(backgroundColor) set];
NSRectFill(frame);
if (![[self target] conformsToProtocol:@protocol(AppListPagerDelegate)])
@@ -157,7 +157,7 @@ const CGFloat kButtonStripPadding = 20;
if (selectedRatio == 0.0)
return;
- [gfx::SkColorToSRGBNSColor(app_list::kPagerSelectedColor) set];
+ [skia::SkColorToSRGBNSColor(app_list::kPagerSelectedColor) set];
if (selectedRatio < 0)
frame.origin.x += frame.size.width + frame.size.width * selectedRatio;
frame.size.width *= fabs(selectedRatio);

Powered by Google App Engine
This is Rietveld 408576698