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 b8cc9774f5846a14a7eb1d6caec6bc703d83fe6a..833c76bb2a45c8b7f8d32b3bec58648ea7b291e4 100644 |
--- a/mojo/public/interfaces/bindings/tests/rect.mojom |
+++ b/mojo/public/interfaces/bindings/tests/rect.mojom |
@@ -11,3 +11,12 @@ struct Rect { |
int32 width; |
int32 height; |
}; |
+ |
+// A copy of Rect that can be typemapped. Arrays of Rect are currently used, |
+// which do not support typemapping. |
+struct TypemappedRect { |
+ int32 x; |
+ int32 y; |
+ int32 width; |
+ int32 height; |
+}; |