diff options
Diffstat (limited to 'content/common/fileapi/webblobregistry_impl.cc')
-rw-r--r-- | content/common/fileapi/webblobregistry_impl.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/common/fileapi/webblobregistry_impl.cc b/content/common/fileapi/webblobregistry_impl.cc index d561802..0a587c7 100644 --- a/content/common/fileapi/webblobregistry_impl.cc +++ b/content/common/fileapi/webblobregistry_impl.cc @@ -18,6 +18,8 @@ using WebKit::WebBlobData; using WebKit::WebString; using WebKit::WebURL; +namespace content { + WebBlobRegistryImpl::WebBlobRegistryImpl(ChildThread* child_thread) : child_thread_(child_thread) { } @@ -112,3 +114,5 @@ void WebBlobRegistryImpl::registerBlobURL( void WebBlobRegistryImpl::unregisterBlobURL(const WebURL& url) { child_thread_->Send(new BlobHostMsg_RemoveBlob(url)); } + +} // namespace content |