HomeSort by relevance Sort by last modified time
    Searched refs:registerBlobURL (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/fileapi/
ThreadableBlobRegistry.h 43 static void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
44 static void registerBlobURL(const KURL&, const KURL& srcURL);
ThreadableBlobRegistry.cpp 70 blobRegistry().registerBlobURL(blobRegistryContext->url, blobRegistryContext->blobData.release());
73 void ThreadableBlobRegistry::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
76 blobRegistry().registerBlobURL(url, blobData);
86 blobRegistry().registerBlobURL(blobRegistryContext->url, blobRegistryContext->srcURL);
89 void ThreadableBlobRegistry::registerBlobURL(const KURL& url, const KURL& srcURL)
92 blobRegistry().registerBlobURL(url, srcURL);
117 void ThreadableBlobRegistry::registerBlobURL(const KURL&, PassOwnPtr<BlobData>)
121 void ThreadableBlobRegistry::registerBlobURL(const KURL&, const KURL&)
Blob.cpp 48 ThreadableBlobRegistry::registerBlobURL(m_internalURL, blobData);
57 ThreadableBlobRegistry::registerBlobURL(m_internalURL, srcURL);
FileReaderLoader.cpp 82 ThreadableBlobRegistry::registerBlobURL(m_urlForReading, blob->url());
  /external/webkit/Source/WebKit/chromium/public/
WebBlobRegistry.h 48 virtual void registerBlobURL(const WebURL&, WebBlobData&) = 0;
51 virtual void registerBlobURL(const WebURL&, const WebURL& srcURL) = 0;
  /external/webkit/Source/WebKit/chromium/src/
BlobRegistryProxy.cpp 65 void BlobRegistryProxy::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
69 m_webBlobRegistry->registerBlobURL(url, webBlobData);
73 void BlobRegistryProxy::registerBlobURL(const KURL& url, const KURL& srcURL)
76 m_webBlobRegistry->registerBlobURL(url, srcURL);
BlobRegistryProxy.h 46 virtual void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
47 virtual void registerBlobURL(const KURL&, const KURL& srcURL);
  /external/webkit/Source/WebCore/platform/network/
BlobRegistry.h 56 virtual void registerBlobURL(const KURL&, PassOwnPtr<BlobData>) = 0;
59 virtual void registerBlobURL(const KURL&, const KURL& srcURL) = 0;
BlobRegistryImpl.h 56 virtual void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
57 virtual void registerBlobURL(const KURL&, const KURL& srcURL);
BlobRegistryImpl.cpp 125 void BlobRegistryImpl::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
154 void BlobRegistryImpl::registerBlobURL(const KURL& url, const KURL& srcURL)
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 387 ThreadableBlobRegistry::registerBlobURL(publicURL, blob->url());

Completed in 126 milliseconds