| Index: ios/chrome/browser/ui/settings/cells/import_data_multiline_detail_cell.mm
|
| diff --git a/ios/chrome/browser/ui/settings/cells/import_data_multiline_detail_cell.mm b/ios/chrome/browser/ui/settings/cells/import_data_multiline_detail_cell.mm
|
| index 060c7cef668a659faef9f76bb6ef797f67b38c92..5c97d5e72d8ee985ceea291e615d9fc51cca3628 100644
|
| --- a/ios/chrome/browser/ui/settings/cells/import_data_multiline_detail_cell.mm
|
| +++ b/ios/chrome/browser/ui/settings/cells/import_data_multiline_detail_cell.mm
|
| @@ -5,7 +5,7 @@
|
| #import "ios/chrome/browser/ui/settings/cells/import_data_multiline_detail_cell.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."
|
| @@ -34,16 +34,14 @@ const CGFloat kVerticalPadding = 16;
|
| _textLabel.translatesAutoresizingMaskIntoConstraints = NO;
|
| [contentView addSubview:_textLabel];
|
|
|
| - _textLabel.font =
|
| - [[MDFRobotoFontLoader sharedInstance] mediumFontOfSize:14];
|
| + _textLabel.font = [[MDCTypography fontLoader] mediumFontOfSize:14];
|
| _textLabel.textColor = [[MDCPalette greyPalette] tint900];
|
|
|
| _detailTextLabel = [[UILabel alloc] init];
|
| _detailTextLabel.translatesAutoresizingMaskIntoConstraints = NO;
|
| [contentView addSubview:_detailTextLabel];
|
|
|
| - _detailTextLabel.font =
|
| - [[MDFRobotoFontLoader sharedInstance] regularFontOfSize:14];
|
| + _detailTextLabel.font = [[MDCTypography fontLoader] regularFontOfSize:14];
|
| _detailTextLabel.textColor = [[MDCPalette greyPalette] tint500];
|
| _detailTextLabel.numberOfLines = 0;
|
|
|
|
|