| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 4826be7a48181fe1b55157a1c1a9b9d04b0cb505..bb50f5e3279e5c4a8cb6673a1638b5fa72511572 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -408,9 +408,9 @@ void BrowserMainLoop::ShutdownThreadsAndCleanUp() {
|
| // need to be able to perform IO.
|
| base::ThreadRestrictions::SetIOAllowed(true);
|
| BrowserThread::PostTask(
|
| - BrowserThread::IO,
|
| - FROM_HERE,
|
| - NewRunnableFunction(&base::ThreadRestrictions::SetIOAllowed, true));
|
| + BrowserThread::IO, FROM_HERE,
|
| + base::Bind(base::IgnoreResult(&base::ThreadRestrictions::SetIOAllowed),
|
| + true));
|
|
|
| if (parts_.get())
|
| parts_->PostMainMessageLoopRun();
|
|
|