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

Unified Diff: content/child/blob_storage/blob_transport_controller_unittest.cc

Issue 2422793002: HTML MessagePort as mojo::MessagePipeHandle (Closed)
Patch Set: Add missing ScopedAsyncTaskScheduler instance for the new unit tests; required by a recent change t… Created 3 years, 10 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/child/blob_storage/blob_transport_controller_unittest.cc
diff --git a/content/child/blob_storage/blob_transport_controller_unittest.cc b/content/child/blob_storage/blob_transport_controller_unittest.cc
index 249da1777420a63030eb4e5a2039ae33b18a16bc..c016777f0314b702713c14e9e8f824656874055c 100644
--- a/content/child/blob_storage/blob_transport_controller_unittest.cc
+++ b/content/child/blob_storage/blob_transport_controller_unittest.cc
@@ -133,7 +133,8 @@ class BlobTransportControllerTest : public testing::Test {
ASSERT_TRUE(register_message);
std::tuple<std::string, std::string, std::string, std::vector<DataElement>>
register_contents;
- BlobStorageMsg_RegisterBlob::Read(register_message, &register_contents);
+ BlobStorageMsg_RegisterBlob::ReadSendParam(register_message,
+ &register_contents);
EXPECT_EQ(expected_uuid, std::get<0>(register_contents));
EXPECT_EQ(expected_content_type, std::get<1>(register_contents));
if (descriptions)
« no previous file with comments | « content/child/blob_storage/blob_transport_controller.cc ('k') | content/child/blob_storage/webblobregistry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698