| Index: mojo/public/interfaces/bindings/tests/rect.mojom
|
| diff --git a/mojo/public/interfaces/bindings/tests/rect.mojom b/mojo/public/interfaces/bindings/tests/rect.mojom
|
| index 833c76bb2a45c8b7f8d32b3bec58648ea7b291e4..4ecc4d9660ce705ee937502925b80d68c5001826 100644
|
| --- a/mojo/public/interfaces/bindings/tests/rect.mojom
|
| +++ b/mojo/public/interfaces/bindings/tests/rect.mojom
|
| @@ -12,11 +12,20 @@ struct Rect {
|
| int32 height;
|
| };
|
|
|
| -// A copy of Rect that can be typemapped. Arrays of Rect are currently used,
|
| -// which do not support typemapping.
|
| +// A copy of Rect that is typemapped differently in the chromium and blink
|
| +// variants.
|
| struct TypemappedRect {
|
| int32 x;
|
| int32 y;
|
| int32 width;
|
| int32 height;
|
| };
|
| +
|
| +// A copy of Rect that is typemapped to the same custom type in the chromium and
|
| +// blink variants.
|
| +struct SharedTypemappedRect {
|
| + int32 x;
|
| + int32 y;
|
| + int32 width;
|
| + int32 height;
|
| +};
|
|
|