| Index: content/worker/worker_webkitplatformsupport_impl.cc
|
| diff --git a/content/worker/worker_webkitplatformsupport_impl.cc b/content/worker/worker_webkitplatformsupport_impl.cc
|
| index 931b75657c3dd6e3c42c94e34f87832dd6e7ef99..b5df064ae9dace22638ccee0b554027af514ceb5 100644
|
| --- a/content/worker/worker_webkitplatformsupport_impl.cc
|
| +++ b/content/worker/worker_webkitplatformsupport_impl.cc
|
| @@ -96,7 +96,7 @@ WebFileSystem* WorkerWebKitPlatformSupportImpl::fileSystem() {
|
|
|
| WebFileUtilities* WorkerWebKitPlatformSupportImpl::fileUtilities() {
|
| if (!file_utilities_) {
|
| - file_utilities_.reset(new FileUtilities(thread_safe_sender_));
|
| + file_utilities_.reset(new FileUtilities(thread_safe_sender_.get()));
|
| file_utilities_->set_sandbox_enabled(sandboxEnabled());
|
| }
|
| return file_utilities_.get();
|
| @@ -282,8 +282,8 @@ WebString WorkerWebKitPlatformSupportImpl::preferredExtensionForMIMEType(
|
| }
|
|
|
| WebBlobRegistry* WorkerWebKitPlatformSupportImpl::blobRegistry() {
|
| - if (!blob_registry_.get() && thread_safe_sender_)
|
| - blob_registry_.reset(new WebBlobRegistryImpl(thread_safe_sender_));
|
| + if (!blob_registry_.get() && thread_safe_sender_.get())
|
| + blob_registry_.reset(new WebBlobRegistryImpl(thread_safe_sender_.get()));
|
| return blob_registry_.get();
|
| }
|
|
|
|
|