| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| index ac01f32163c910cfe2ec793144ab50d96015bd24..64f94f56ca27a8de0a72cc003d3f8832d8f3c01b 100644
|
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
|
| @@ -399,6 +399,8 @@
|
| container_->AddChildView(
|
| new views::Label(base::ASCIIToUTF16("."), font_list));
|
| }
|
| +
|
| + OnNativeThemeChanged(GetNativeTheme());
|
| }
|
|
|
| virtual ~LoadingAnimationView() {}
|
| @@ -577,6 +579,8 @@
|
|
|
| AddChildView(image_view_);
|
| AddChildView(message_view_);
|
| +
|
| + OnNativeThemeChanged(GetNativeTheme());
|
| }
|
|
|
| AutofillDialogViews::OverlayView::~OverlayView() {}
|
| @@ -1627,6 +1631,7 @@
|
| views::Background::CreateSolidBackground(kShadingColor));
|
|
|
| legal_document_view_ = new views::StyledLabel(base::string16(), this);
|
| + OnNativeThemeChanged(GetNativeTheme());
|
|
|
| footnote_view_->AddChildView(legal_document_view_);
|
| footnote_view_->SetVisible(false);
|
|
|