Searched refs:blob_url (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/content/browser/fileapi/
H A Dblob_storage_host.cc88 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) { argument
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) { argument
114 return public_blob_urls_.find(blob_url) !
87 RegisterPublicBlobURL( const GURL& blob_url, const std::string& uuid) argument
[all...]
H A Dblob_storage_host.h51 bool RegisterPublicBlobURL(const GURL& blob_url,
53 bool RevokePublicBlobURL(const GURL& blob_url) WARN_UNUSED_RESULT;
60 bool IsUrlRegisteredInHost(const GURL& blob_url);
H A Dfile_writer_delegate_unittest.cc134 // Creates and sets up a FileWriterDelegate for writing the given |blob_url|,
137 const GURL& blob_url,
143 blob_url, net::DEFAULT_PRIORITY, file_writer_delegate_.get(), NULL);
136 PrepareForWrite(const char* test_file_path, const GURL& blob_url, int64 offset, int64 allowed_growth) argument
/external/chromium_org/chrome/browser/extensions/
H A Dblob_reader.cc23 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/storage/browser/blob/
H A Dblob_storage_context.cc98 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) { argument
110 DCHECK(!BlobUrlHasRef(blob_url));
111 if (!IsUrlRegistered(blob_url))
113 DecrementBlobRefCount(public_blob_urls_[blob_url]);
114 public_blob_urls_.erase(blob_url);
97 RegisterPublicBlobURL( const GURL& blob_url, const std::string& uuid) argument
321 IsUrlRegistered(const GURL& blob_url) argument
[all...]
H A Dblob_storage_context.h103 bool IsUrlRegistered(const GURL& blob_url);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_backing_store.cc2314 const GURL& blob_url,
2327 DCHECK(blob_url.is_valid());
2329 blob_url, net::DEFAULT_PRIORITY, delegate.get(), NULL));
2313 writeBlobToFileOnIOThread(const FilePath& file_path, const GURL& blob_url, net::URLRequestContext* request_context) argument

Completed in 3617 milliseconds