| Index: mojo/public/cpp/bindings/tests/map_common_test.h
|
| diff --git a/mojo/public/cpp/bindings/tests/map_common_test.h b/mojo/public/cpp/bindings/tests/map_common_test.h
|
| index c8654ce7f84d75e93fd33d6496b7058febf78718..67fc00c4c83c077b72f532b4637a52685a7c25f3 100644
|
| --- a/mojo/public/cpp/bindings/tests/map_common_test.h
|
| +++ b/mojo/public/cpp/bindings/tests/map_common_test.h
|
| @@ -155,7 +155,7 @@ class MapCommonTest {
|
|
|
| static void ArrayOfMap() {
|
| {
|
| - using MojomType = Array<Map<int32_t, int8_t>>;
|
| + using MojomType = ArrayDataView<MapDataView<int32_t, int8_t>>;
|
| using UserType = ArrayType<MapType<int32_t, int8_t>>;
|
|
|
| UserType array(1);
|
| @@ -185,7 +185,8 @@ class MapCommonTest {
|
| }
|
|
|
| {
|
| - using MojomType = Array<Map<String, Array<bool>>>;
|
| + using MojomType =
|
| + ArrayDataView<MapDataView<StringDataView, ArrayDataView<bool>>>;
|
| using UserType = ArrayType<MapType<StringType, ArrayType<bool>>>;
|
|
|
| UserType array(1);
|
|
|