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

Unified Diff: ios/chrome/browser/ui/payments/cells/page_info_item.mm

Issue 2912863005: Use MDCTypography instead of MDFRobotoFontLoader directly. (Closed)
Patch Set: Tentative fix for ManualTextFramerTest Created 3 years, 7 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: ios/chrome/browser/ui/payments/cells/page_info_item.mm
diff --git a/ios/chrome/browser/ui/payments/cells/page_info_item.mm b/ios/chrome/browser/ui/payments/cells/page_info_item.mm
index f73f183ff6a071e18527ec0cd834d34b3f294134..98db8d2bd39b6042ee39104cfebdd2e1866c9edf 100644
--- a/ios/chrome/browser/ui/payments/cells/page_info_item.mm
+++ b/ios/chrome/browser/ui/payments/cells/page_info_item.mm
@@ -5,7 +5,7 @@
#import "ios/chrome/browser/ui/payments/cells/page_info_item.h"
#import "ios/third_party/material_components_ios/src/components/Palettes/src/MaterialPalettes.h"
-#import "ios/third_party/material_roboto_font_loader_ios/src/src/MaterialRobotoFontLoader.h"
+#import "ios/third_party/material_components_ios/src/components/Typography/src/MaterialTypography.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
@@ -72,8 +72,7 @@ const CGFloat kHorizontalPadding = 16;
// Page title
_pageTitleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
- _pageTitleLabel.font =
- [[MDFRobotoFontLoader sharedInstance] mediumFontOfSize:12];
+ _pageTitleLabel.font = [[MDCTypography fontLoader] mediumFontOfSize:12];
_pageTitleLabel.textColor = [[MDCPalette greyPalette] tint900];
_pageTitleLabel.backgroundColor = [UIColor clearColor];
_pageTitleLabel.translatesAutoresizingMaskIntoConstraints = NO;
@@ -81,8 +80,7 @@ const CGFloat kHorizontalPadding = 16;
// Page host
_pageHostLabel = [[UILabel alloc] initWithFrame:CGRectZero];
- _pageHostLabel.font =
- [[MDFRobotoFontLoader sharedInstance] regularFontOfSize:12];
+ _pageHostLabel.font = [[MDCTypography fontLoader] regularFontOfSize:12];
_pageHostLabel.textColor = [[MDCPalette greyPalette] tint600];
// Allow the label to break to multiple lines. This should be very rare but
// will prevent malicious domains from suppling very long host names and

Powered by Google App Engine
This is Rietveld 408576698