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

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

Issue 524703004: Mojo: validate nullability in Java serialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Ben's comments. Created 6 years, 3 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/serialization_test_structs.mojom
diff --git a/mojo/public/interfaces/bindings/tests/serialization_test_structs.mojom b/mojo/public/interfaces/bindings/tests/serialization_test_structs.mojom
index 60642b59944bbe3217f774bc4cda629956595f65..a4b7955854319cc0dd2b1c710cac99426bdeda87 100644
--- a/mojo/public/interfaces/bindings/tests/serialization_test_structs.mojom
+++ b/mojo/public/interfaces/bindings/tests/serialization_test_structs.mojom
@@ -29,4 +29,10 @@ struct Struct6 {
string str;
};
+struct StructOfNullables {
+ handle? hdl;
+ Struct1? struct_1;
+ string? str;
+};
+
}

Powered by Google App Engine
This is Rietveld 408576698