| Index: storage/browser/blob/blob_url_request_job_factory.h
|
| diff --git a/storage/browser/blob/blob_url_request_job_factory.h b/storage/browser/blob/blob_url_request_job_factory.h
|
| index 381a95fce895bd99e2cc015475dbf5ddee4b1df3..7f7a5506447ad7eb617d9aaa5c11fef9c9a37a1d 100644
|
| --- a/storage/browser/blob/blob_url_request_job_factory.h
|
| +++ b/storage/browser/blob/blob_url_request_job_factory.h
|
| @@ -13,7 +13,7 @@
|
| #include "storage/browser/storage_browser_export.h"
|
|
|
| namespace base {
|
| -class MessageLoopProxy;
|
| +class SingleThreadTaskRunner;
|
| } // namespace base
|
|
|
| namespace storage {
|
| @@ -48,7 +48,7 @@ class STORAGE_EXPORT BlobProtocolHandler
|
| BlobProtocolHandler(
|
| BlobStorageContext* context,
|
| storage::FileSystemContext* file_system_context,
|
| - const scoped_refptr<base::MessageLoopProxy>& file_loop_proxy);
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& file_task_runner);
|
| ~BlobProtocolHandler() override;
|
|
|
| net::URLRequestJob* MaybeCreateJob(
|
| @@ -60,7 +60,7 @@ class STORAGE_EXPORT BlobProtocolHandler
|
|
|
| base::WeakPtr<BlobStorageContext> context_;
|
| const scoped_refptr<storage::FileSystemContext> file_system_context_;
|
| - const scoped_refptr<base::MessageLoopProxy> file_loop_proxy_;
|
| + const scoped_refptr<base::SingleThreadTaskRunner> file_task_runner_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BlobProtocolHandler);
|
| };
|
|
|