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

Unified Diff: content/public/test/mock_blob_url_request_context.cc

Issue 895933007: [Storage] Blob items are now shared between blobs. Ready for disk swap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: content/public/test/mock_blob_url_request_context.cc
diff --git a/content/public/test/mock_blob_url_request_context.cc b/content/public/test/mock_blob_url_request_context.cc
index 6f558700d40093debd4d0daf484adbd5a4c005ad..f0cd546199109723b03927cdf2995552d00c0208 100644
--- a/content/public/test/mock_blob_url_request_context.cc
+++ b/content/public/test/mock_blob_url_request_context.cc
@@ -37,7 +37,7 @@ ScopedTextBlob::ScopedTextBlob(
storage::BlobDataBuilder blob_builder(blob_id_);
if (!data.empty())
blob_builder.AppendData(data);
- handle_ = context_->AddFinishedBlob(blob_builder);
+ handle_ = context_->AddFinishedBlob(&blob_builder);
}
ScopedTextBlob::~ScopedTextBlob() {

Powered by Google App Engine
This is Rietveld 408576698