| Index: chrome/browser/component_updater/npapi_flash_component_installer.cc
|
| diff --git a/chrome/browser/component_updater/npapi_flash_component_installer.cc b/chrome/browser/component_updater/npapi_flash_component_installer.cc
|
| index 7baffbde5ddbfa46a16ffaf7958893eda8672c29..43a4060d95605e4816711689cad908ea5e3a1f30 100644
|
| --- a/chrome/browser/component_updater/npapi_flash_component_installer.cc
|
| +++ b/chrome/browser/component_updater/npapi_flash_component_installer.cc
|
| @@ -212,10 +212,12 @@ void RegisterNPAPIFlashComponent(ComponentUpdateService* cus) {
|
|
|
| // Post the task to the FILE thread because IO may be done once the plugins
|
| // are loaded.
|
| - BrowserThread::PostDelayedTask(BrowserThread::FILE, FROM_HERE,
|
| + BrowserThread::PostDelayedTask(
|
| + BrowserThread::FILE,
|
| + FROM_HERE,
|
| base::Bind(&PluginService::GetPlugins,
|
| base::Unretained(PluginService::GetInstance()),
|
| base::Bind(&StartFlashUpdateRegistration, cus)),
|
| - 8000);
|
| + base::TimeDelta::FromSeconds(8));
|
| #endif
|
| }
|
|
|