Index: content/child/webblobregistry_impl.cc |
diff --git a/content/child/webblobregistry_impl.cc b/content/child/webblobregistry_impl.cc |
index a51f4ec837b8bbbadf068fe8c0f3ee1c9b22fa8b..421de95cc92964ae2851a8c44de12edd246d2953 100644 |
--- a/content/child/webblobregistry_impl.cc |
+++ b/content/child/webblobregistry_impl.cc |
@@ -189,6 +189,11 @@ void WebBlobRegistryImpl::finalizeStream(const WebURL& url) { |
sender_->Send(new StreamHostMsg_FinishBuilding(url)); |
} |
+void WebBlobRegistryImpl::abortStream(const WebURL& url) { |
+ DCHECK(ChildThread::current()); |
+ sender_->Send(new StreamHostMsg_AbortBuilding(url)); |
+} |
+ |
void WebBlobRegistryImpl::unregisterStreamURL(const WebURL& url) { |
DCHECK(ChildThread::current()); |
sender_->Send(new StreamHostMsg_Remove(url)); |