Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: storage/browser/blob/internal_blob_data.h

Issue 1234813004: [BlobAsync] Asynchronous Blob Construction Final Patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blob-protocol-change
Patch Set: comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: storage/browser/blob/internal_blob_data.h
diff --git a/storage/browser/blob/internal_blob_data.h b/storage/browser/blob/internal_blob_data.h
index c751762a6a153519c18216ebfba12fdb6b2eca92..f00038568934ed735639dd22e6182adc364cd84b 100644
--- a/storage/browser/blob/internal_blob_data.h
+++ b/storage/browser/blob/internal_blob_data.h
@@ -33,8 +33,6 @@ class InternalBlobData {
void RemoveBlobFromShareableItems(const std::string& blob_uuid);
const std::vector<scoped_refptr<ShareableBlobDataItem>>& items() const;
- const std::string& content_type() const;
- const std::string& content_disposition() const;
// Gets the memory used by this blob that is not shared by other blobs. This
// also doesn't count duplicate items.
@@ -60,8 +58,6 @@ class InternalBlobData {
~Builder();
void AppendSharedBlobItem(scoped_refptr<ShareableBlobDataItem> item);
- void set_content_type(const std::string& content_type);
- void set_content_disposition(const std::string& content_disposition);
// Gets the memory used by this builder that is not shared with other blobs.
size_t GetNonsharedMemoryUsage() const;

Powered by Google App Engine
This is Rietveld 408576698