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

  /external/chromium_org/content/browser/fileapi/
blob_storage_host.cc 88 const GURL& blob_url, const std::string& uuid) {
90 context_->IsUrlRegistered(blob_url))
92 context_->RegisterPublicBlobURL(blob_url, uuid);
93 public_blob_urls_.insert(blob_url);
97 bool BlobStorageHost::RevokePublicBlobURL(const GURL& blob_url) {
98 if (!context_.get() || !IsUrlRegisteredInHost(blob_url))
100 context_->RevokePublicBlobURL(blob_url);
101 public_blob_urls_.erase(blob_url);
113 bool BlobStorageHost::IsUrlRegisteredInHost(const GURL& blob_url) {
114 return public_blob_urls_.find(blob_url) != public_blob_urls_.end()
    [all...]
blob_storage_host.h 51 bool RegisterPublicBlobURL(const GURL& blob_url,
53 bool RevokePublicBlobURL(const GURL& blob_url) WARN_UNUSED_RESULT;
60 bool IsUrlRegisteredInHost(const GURL& blob_url);
file_writer_delegate_unittest.cc 135 // Creates and sets up a FileWriterDelegate for writing the given |blob_url|,
138 const GURL& blob_url,
144 blob_url, net::DEFAULT_PRIORITY, file_writer_delegate_.get(), NULL);
  /external/chromium_org/chrome/browser/extensions/
blob_reader.cc 23 GURL blob_url; local
26 blob_url = GURL(blob_uuid);
28 blob_url = GURL(std::string("blob:uuid/") + blob_uuid);
30 DCHECK(blob_url.is_valid());
32 blob_url, net::URLFetcher::GET,
  /external/chromium_org/webkit/browser/blob/
blob_storage_context.cc 98 const GURL& blob_url, const std::string& uuid) {
99 DCHECK(!BlobUrlHasRef(blob_url));
101 DCHECK(!IsUrlRegistered(blob_url));
102 if (!IsInUse(uuid) || IsUrlRegistered(blob_url))
105 public_blob_urls_[blob_url] = uuid;
109 void BlobStorageContext::RevokePublicBlobURL(const GURL& blob_url) {
110 DCHECK(!BlobUrlHasRef(blob_url));
111 if (!IsUrlRegistered(blob_url))
113 DecrementBlobRefCount(public_blob_urls_[blob_url]);
114 public_blob_urls_.erase(blob_url);
    [all...]
blob_storage_context.h 103 bool IsUrlRegistered(const GURL& blob_url);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_backing_store.cc     [all...]

Completed in 125 milliseconds