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

Unified Diff: mojo/public/cpp/bindings/tests/map_unittest.cc

Issue 1475813002: Mojo C++ bindings: support passing associated interface pointers/requests in method parameter lists… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@25_use_multiplex_router
Patch Set: Created 5 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: mojo/public/cpp/bindings/tests/map_unittest.cc
diff --git a/mojo/public/cpp/bindings/tests/map_unittest.cc b/mojo/public/cpp/bindings/tests/map_unittest.cc
index 5b049a87a02fdd53e9a14f2ba08a090e87eade47..ca17672c5a001bc050a73d1f753659168acd86b8 100644
--- a/mojo/public/cpp/bindings/tests/map_unittest.cc
+++ b/mojo/public/cpp/bindings/tests/map_unittest.cc
@@ -279,7 +279,7 @@ TEST_F(MapTest, ArrayOfMap) {
SerializeArray_(array.Pass(), &buf, &data, &validate_params);
Array<Map<int32_t, int8_t>> deserialized_array;
- Deserialize_(data, &deserialized_array);
+ Deserialize_(data, &deserialized_array, nullptr);
ASSERT_EQ(1u, deserialized_array.size());
ASSERT_EQ(1u, deserialized_array[0].size());
@@ -302,7 +302,7 @@ TEST_F(MapTest, ArrayOfMap) {
SerializeArray_(array.Pass(), &buf, &data, &validate_params);
Array<Map<String, Array<bool>>> deserialized_array;
- Deserialize_(data, &deserialized_array);
+ Deserialize_(data, &deserialized_array, nullptr);
ASSERT_EQ(1u, deserialized_array.size());
ASSERT_EQ(1u, deserialized_array[0].size());
« no previous file with comments | « mojo/public/cpp/bindings/tests/associated_interface_unittest.cc ('k') | mojo/public/cpp/bindings/tests/struct_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698