Index: mojo/public/interfaces/bindings/tests/test_structs.mojom |
diff --git a/mojo/public/interfaces/bindings/tests/test_structs.mojom b/mojo/public/interfaces/bindings/tests/test_structs.mojom |
index 168771e740084cf97ed9909291ffb58c70933b3a..cee6fb81d2f1932d0761ae44de0847106f229a4b 100644 |
--- a/mojo/public/interfaces/bindings/tests/test_structs.mojom |
+++ b/mojo/public/interfaces/bindings/tests/test_structs.mojom |
@@ -3,7 +3,7 @@ |
// found in the LICENSE file. |
[JavaPackage="org.chromium.mojo.bindings.test"] |
-module test_structs { |
+module mojo.test { |
struct Rect { |
int32 x; |
@@ -17,4 +17,9 @@ struct NamedRegion { |
Rect[] rects; |
}; |
+struct RectPair { |
+ Rect first; |
+ Rect second; |
+}; |
+ |
} |