summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/profile_reset_bubble_view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/views/profile_reset_bubble_view.cc')
-rw-r--r--chrome/browser/ui/views/profile_reset_bubble_view.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/browser/ui/views/profile_reset_bubble_view.cc b/chrome/browser/ui/views/profile_reset_bubble_view.cc
index 29bb842..ccb23c3 100644
--- a/chrome/browser/ui/views/profile_reset_bubble_view.cc
+++ b/chrome/browser/ui/views/profile_reset_bubble_view.cc
@@ -208,9 +208,9 @@ void ProfileResetBubbleView::SetupLayoutManager(bool report_checked) {
// Bubble title label.
views::Label* title_label = new views::Label(
- l10n_util::GetStringFUTF16(IDS_RESET_BUBBLE_TITLE, product_name));
+ l10n_util::GetStringFUTF16(IDS_RESET_BUBBLE_TITLE, product_name),
+ rb.GetFontList(ui::ResourceBundle::BoldFont));
title_label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
- title_label->SetFont(rb.GetFont(ui::ResourceBundle::BoldFont));
// Description text label.
views::Label* text_label = new views::Label(
@@ -235,7 +235,8 @@ void ProfileResetBubbleView::SetupLayoutManager(bool report_checked) {
this, l10n_util::GetStringUTF16(reset_button_string_id));
controls_.reset_button->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON);
controls_.reset_button->SetIsDefault(true);
- controls_.reset_button->SetFont(rb.GetFont(ui::ResourceBundle::BoldFont));
+ controls_.reset_button->SetFontList(
+ rb.GetFontList(ui::ResourceBundle::BoldFont));
controls_.reset_button->SetEnabled(!resetting_);
// For the Resetting... text to fit.
gfx::Size reset_button_size = controls_.reset_button->GetPreferredSize();