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

Unified Diff: content/browser/blob_storage/blob_memory_controller_unittest.cc

Issue 2448353002: [BlobAsync] Moving async handling into BlobStorageContext & quota out. (Closed)
Patch Set: comments Created 4 years, 1 month 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/browser/blob_storage/blob_memory_controller_unittest.cc
diff --git a/content/browser/blob_storage/blob_memory_controller_unittest.cc b/content/browser/blob_storage/blob_memory_controller_unittest.cc
index 6b68cbda66c75f1222288183e87ef77007f95160..290a40be23ce98a23d49a2e582c59893e2544dfb 100644
--- a/content/browser/blob_storage/blob_memory_controller_unittest.cc
+++ b/content/browser/blob_storage/blob_memory_controller_unittest.cc
@@ -57,9 +57,8 @@ class BlobMemoryControllerTest : public testing::Test {
const BlobDataBuilder& builder) {
std::vector<scoped_refptr<ShareableBlobDataItem>> result;
for (size_t i = 0; i < builder.items_.size(); ++i) {
- result.push_back(make_scoped_refptr(
- new ShareableBlobDataItem(builder.uuid(), builder.items_[i],
- ShareableBlobDataItem::QUOTA_NEEDED)));
+ result.push_back(make_scoped_refptr(new ShareableBlobDataItem(
+ builder.items_[i], ShareableBlobDataItem::QUOTA_NEEDED)));
}
return result;
}
« no previous file with comments | « content/browser/blob_storage/blob_flattener_unittest.cc ('k') | content/browser/blob_storage/blob_reader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698