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

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

Issue 1234813004: [BlobAsync] Asynchronous Blob Construction Final Patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blob-protocol-change
Patch Set: comments and rebase 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
« no previous file with comments | « storage/browser/blob/internal_blob_data.h ('k') | storage/browser/blob/shareable_blob_data_item.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/blob/internal_blob_data.cc
diff --git a/storage/browser/blob/internal_blob_data.cc b/storage/browser/blob/internal_blob_data.cc
index cbec2900d6952ade4cd13075f0ba3137be29bb39..b01a452a07e278d9ef04b950bc07da7e5cfc3b4c 100644
--- a/storage/browser/blob/internal_blob_data.cc
+++ b/storage/browser/blob/internal_blob_data.cc
@@ -32,18 +32,6 @@ void InternalBlobData::Builder::RemoveBlobFromShareableItems(
data_->RemoveBlobFromShareableItems(blob_uuid);
}
-void InternalBlobData::Builder::set_content_type(
- const std::string& content_type) {
- DCHECK(data_);
- data_->content_type_ = content_type;
-}
-
-void InternalBlobData::Builder::set_content_disposition(
- const std::string& content_disposition) {
- DCHECK(data_);
- data_->content_disposition_ = content_disposition;
-}
-
size_t InternalBlobData::Builder::GetNonsharedMemoryUsage() const {
DCHECK(data_);
return data_->GetUnsharedMemoryUsage();
@@ -64,12 +52,6 @@ const std::vector<scoped_refptr<ShareableBlobDataItem>>&
InternalBlobData::items() const {
return items_;
}
-const std::string& InternalBlobData::content_type() const {
- return content_type_;
-}
-const std::string& InternalBlobData::content_disposition() const {
- return content_disposition_;
-}
void InternalBlobData::RemoveBlobFromShareableItems(
const std::string& blob_uuid) {
« no previous file with comments | « storage/browser/blob/internal_blob_data.h ('k') | storage/browser/blob/shareable_blob_data_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698