| Index: chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| index b2c8d9443454123b70d159e98a47b36c31dc16ae..8fb8a66556b2ee570535bbabc72435484fb9b57c 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc
|
| @@ -6,8 +6,11 @@
|
|
|
| #include <algorithm>
|
|
|
| +#include "chrome/browser/profiles/profile_manager.h"
|
| #include "chrome/browser/search/search.h"
|
| #include "chrome/browser/themes/theme_properties.h"
|
| +#include "chrome/browser/themes/theme_service.h"
|
| +#include "chrome/browser/themes/theme_service_factory.h"
|
| #include "chrome/browser/ui/views/location_bar/location_bar_view.h"
|
| #include "chrome/browser/ui/views/omnibox/omnibox_result_view.h"
|
| #include "components/omnibox/browser/omnibox_view.h"
|
| @@ -231,6 +234,8 @@ void OmniboxPopupContentsView::UpdatePopupAppearance() {
|
| params.bounds = GetPopupBounds();
|
| params.context = popup_parent->GetNativeWindow();
|
| popup_->Init(params);
|
| + popup_->SetThemeProvider(ThemeServiceFactory::GetForProfile(
|
| + ProfileManager::GetActiveUserProfile()));
|
| // Third-party software such as DigitalPersona identity verification can
|
| // hook the underlying window creation methods and use SendMessage to
|
| // synchronously change focus/activation, resulting in the popup being
|
|
|