| Index: chrome/android/java/src/org/chromium/chrome/browser/payments/ui/BillingAddressAdapter.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/BillingAddressAdapter.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/BillingAddressAdapter.java
|
| index 51c340dd06c0120583bd01a53d36cf73b0afe85c..880cb980a4696ae0bf279cbec93101a1b3fcd1bf 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/BillingAddressAdapter.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/ui/BillingAddressAdapter.java
|
| @@ -6,7 +6,6 @@ package org.chromium.chrome.browser.payments.ui;
|
|
|
| import android.content.Context;
|
| import android.content.res.Resources;
|
| -import android.graphics.Typeface;
|
| import android.view.View;
|
| import android.view.ViewGroup;
|
| import android.widget.TextView;
|
| @@ -14,6 +13,7 @@ import android.widget.TextView;
|
| import org.chromium.base.ApiCompatibilityUtils;
|
| import org.chromium.chrome.R;
|
| import org.chromium.chrome.browser.widget.TintedDrawable;
|
| +import org.chromium.ui.UiUtils;
|
|
|
| import java.util.List;
|
|
|
| @@ -116,9 +116,7 @@ public class BillingAddressAdapter<T> extends DropdownFieldAdapter<T> {
|
| // Set the correct appearance, face and style for the text.
|
| ApiCompatibilityUtils.setTextAppearance(
|
| textView, R.style.PaymentsUiSectionAddButtonLabel);
|
| - textView.setTypeface(
|
| - Typeface.create(resources.getString(R.string.roboto_medium_typeface),
|
| - R.integer.roboto_medium_textstyle));
|
| + textView.setTypeface(UiUtils.createRobotoMediumTypeface());
|
|
|
| // Padding at the bottom of the dropdown.
|
| ApiCompatibilityUtils.setPaddingRelative(convertView,
|
|
|