| Index: chrome/browser/ui/views/profile_reset_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/profile_reset_bubble_view.cc b/chrome/browser/ui/views/profile_reset_bubble_view.cc
|
| index cf7c2ff251900adfe0501790000dce36f625a4fa..ab51c02f87cee36bb4fbb4fef61b5e19ebada5e6 100644
|
| --- a/chrome/browser/ui/views/profile_reset_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/profile_reset_bubble_view.cc
|
| @@ -260,10 +260,12 @@ void ProfileResetBubbleView::SetupLayoutManager(bool report_checked) {
|
| views::Background::CreateSolidBackground(kLightGrayBackgroundColor));
|
| // Have a smaller margin on the right, to have the |controls_.help_button|
|
| // closer to the edge.
|
| - controls_.report_settings_checkbox->set_border(
|
| - views::Border::CreateSolidSidedBorder(
|
| - kMarginWidth, kMarginWidth, kMarginWidth, kMarginWidth / 2,
|
| - kLightGrayBackgroundColor));
|
| + controls_.report_settings_checkbox->SetBorder(
|
| + views::Border::CreateSolidSidedBorder(kMarginWidth,
|
| + kMarginWidth,
|
| + kMarginWidth,
|
| + kMarginWidth / 2,
|
| + kLightGrayBackgroundColor));
|
|
|
| // Help button to toggle the bottom panel on or off.
|
| controls_.help_button = new views::ImageButton(this);
|
|
|