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

Unified Diff: mojo/public/interfaces/bindings/tests/test_structs.mojom

Issue 294833002: Mojo: more idiomatic C++ bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more Created 6 years, 7 months 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/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;
+};
+
}

Powered by Google App Engine
This is Rietveld 408576698