diff options
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/worker_webkitplatformsupport_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/worker/worker_webkitplatformsupport_impl.cc b/content/worker/worker_webkitplatformsupport_impl.cc index 9832a42..e7abf76 100644 --- a/content/worker/worker_webkitplatformsupport_impl.cc +++ b/content/worker/worker_webkitplatformsupport_impl.cc @@ -96,7 +96,7 @@ WebMimeRegistry* WorkerWebKitPlatformSupportImpl::mimeRegistry() { WebFileSystem* WorkerWebKitPlatformSupportImpl::fileSystem() { if (!web_file_system_) - web_file_system_.reset(new WebFileSystemImpl()); + web_file_system_.reset(new WebFileSystemImpl(child_thread_loop_.get())); return web_file_system_.get(); } |