| Index: chrome/browser/ui/hung_plugin_tab_helper.cc
|
| diff --git a/chrome/browser/ui/hung_plugin_tab_helper.cc b/chrome/browser/ui/hung_plugin_tab_helper.cc
|
| index 24eb6ed174ced8e9f9161bfa142f24be6e882f4e..a57296b24c198416fc36d828beeafc3365ae52ba 100644
|
| --- a/chrome/browser/ui/hung_plugin_tab_helper.cc
|
| +++ b/chrome/browser/ui/hung_plugin_tab_helper.cc
|
| @@ -401,9 +401,9 @@ void HungPluginTabHelper::KillPlugin(int child_id) {
|
| PluginStateMap::iterator found = hung_plugins_.find(child_id);
|
| DCHECK(found != hung_plugins_.end());
|
|
|
| - content::BrowserThread::PostTask(content::BrowserThread::IO,
|
| - FROM_HERE,
|
| - base::Bind(&KillPluginOnIOThread, child_id));
|
| + content::BrowserThread::PostTask(
|
| + content::BrowserThread::IO, FROM_HERE,
|
| + base::BindOnce(&KillPluginOnIOThread, child_id));
|
| CloseBar(found->second.get());
|
| }
|
|
|
|
|