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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_notification_controller.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_notification_controller.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_notification_controller.mm b/chrome/browser/ui/cocoa/autofill/autofill_notification_controller.mm
index 0246250ce0bd50ba3483b3912e50608d57f27a4e..3bb12638581d4c1ebef7216f638bb59709b72e64 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_notification_controller.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_notification_controller.mm
@@ -74,14 +74,14 @@
base::scoped_nsobject<AutofillNotificationView> view(
[[AutofillNotificationView alloc] initWithFrame:NSZeroRect]);
[view setBackgroundColor:
- gfx::SkColorToCalibratedNSColor(notification->GetBackgroundColor())];
+ skia::SkColorToCalibratedNSColor(notification->GetBackgroundColor())];
[view setBorderColor:
- gfx::SkColorToCalibratedNSColor(notification->GetBorderColor())];
+ skia::SkColorToCalibratedNSColor(notification->GetBorderColor())];
[self setView:view];
textview_.reset([[HyperlinkTextView alloc] initWithFrame:NSZeroRect]);
NSColor* textColor =
- gfx::SkColorToCalibratedNSColor(notification->GetTextColor());
+ skia::SkColorToCalibratedNSColor(notification->GetTextColor());
[textview_ setMessage:base::SysUTF16ToNSString(notification->display_text())
withFont:[NSFont labelFontOfSize:[[textview_ font] pointSize]]
messageColor:textColor];
« no previous file with comments | « chrome/browser/ui/cocoa/apps/titlebar_background_view.mm ('k') | chrome/browser/ui/cocoa/autofill/autofill_section_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698