| Index: components/devtools_http_handler/devtools_http_handler.cc
|
| diff --git a/components/devtools_http_handler/devtools_http_handler.cc b/components/devtools_http_handler/devtools_http_handler.cc
|
| index 89325284a9fd948a77fa1f4fd2e8e5939628294e..6d2f94cf03c1fc1370c35f08bef9751755c7acce 100644
|
| --- a/components/devtools_http_handler/devtools_http_handler.cc
|
| +++ b/components/devtools_http_handler/devtools_http_handler.cc
|
| @@ -178,11 +178,11 @@ void TerminateOnUI(base::Thread* thread,
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| if (server_wrapper) {
|
| DCHECK(thread);
|
| - thread->message_loop()->DeleteSoon(FROM_HERE, server_wrapper);
|
| + thread->task_runner()->DeleteSoon(FROM_HERE, server_wrapper);
|
| }
|
| if (socket_factory) {
|
| DCHECK(thread);
|
| - thread->message_loop()->DeleteSoon(FROM_HERE, socket_factory);
|
| + thread->task_runner()->DeleteSoon(FROM_HERE, socket_factory);
|
| }
|
| if (thread) {
|
| BrowserThread::DeleteSoon(BrowserThread::FILE, FROM_HERE, thread);
|
|
|