diff options
Diffstat (limited to 'chromium/content/child/webblobregistry_impl.cc')
-rw-r--r-- | chromium/content/child/webblobregistry_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/content/child/webblobregistry_impl.cc b/chromium/content/child/webblobregistry_impl.cc index afc7ae28a73..6ad76f2c93e 100644 --- a/chromium/content/child/webblobregistry_impl.cc +++ b/chromium/content/child/webblobregistry_impl.cc @@ -148,8 +148,8 @@ void WebBlobRegistryImpl::addDataToStream(const WebURL& url, size_t shared_memory_size = std::min(length, storage::kBlobStorageMaxSharedMemoryBytes); std::unique_ptr<base::SharedMemory> shared_memory( - ChildThreadImpl::AllocateSharedMemory(shared_memory_size, - sender_.get())); + ChildThreadImpl::AllocateSharedMemory(shared_memory_size, sender_.get(), + nullptr)); CHECK(shared_memory.get()); if (!shared_memory->Map(shared_memory_size)) CHECK(false); |