| Index: content/browser/browser_main_loop.cc
|
| ===================================================================
|
| --- content/browser/browser_main_loop.cc (revision 113054)
|
| +++ content/browser/browser_main_loop.cc (working copy)
|
| @@ -322,6 +322,9 @@
|
| // Special case as WebKitThread is a separate
|
| // type. |thread_to_start| is not used in this case.
|
| break;
|
| + case BrowserThread::FILE_USER_BLOCKING:
|
| + thread_to_start = &file_user_blocking_thread_;
|
| + break;
|
| case BrowserThread::FILE:
|
| thread_to_start = &file_thread_;
|
| #if defined(OS_WIN)
|
| @@ -448,6 +451,9 @@
|
| // Special case as WebKitThread is a separate
|
| // type. |thread_to_stop| is not used in this case.
|
| break;
|
| + case BrowserThread::FILE_USER_BLOCKING:
|
| + thread_to_stop = &file_user_blocking_thread_;
|
| + break;
|
| case BrowserThread::FILE:
|
| thread_to_stop = &file_thread_;
|
| break;
|
|
|