| Index: chrome/browser/browser_process_impl.cc | 
| diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc | 
| index d4f33666beb5f5002c4b27a6536e9685def34729..8782d818b729b385b7047ac3836becc4c25bf577 100644 | 
| --- a/chrome/browser/browser_process_impl.cc | 
| +++ b/chrome/browser/browser_process_impl.cc | 
| @@ -42,6 +42,7 @@ | 
| #include "chrome/browser/net/crl_set_fetcher.h" | 
| #include "chrome/browser/net/sdch_dictionary_fetcher.h" | 
| #include "chrome/browser/notifications/notification_ui_manager.h" | 
| +#include "chrome/browser/plugins/plugin_finder.h" | 
| #include "chrome/browser/policy/browser_policy_connector.h" | 
| #include "chrome/browser/policy/policy_service.h" | 
| #include "chrome/browser/prefs/browser_prefs.h" | 
| @@ -791,6 +792,9 @@ void BrowserProcessImpl::PreMainMessageLoopRun() { | 
|  | 
| if (local_state_->IsManagedPreference(prefs::kDefaultBrowserSettingEnabled)) | 
| ApplyDefaultBrowserPolicy(); | 
| + | 
| +  // Triggers initialization of the singleton instance on UI thread. | 
| +  PluginFinder::GetInstance()->Init(); | 
| } | 
|  | 
| void BrowserProcessImpl::CreateIconManager() { | 
|  |