| Index: third_party/mojo/src/mojo/public/interfaces/bindings/tests/test_unions.mojom
|
| diff --git a/third_party/mojo/src/mojo/public/interfaces/bindings/tests/test_unions.mojom b/third_party/mojo/src/mojo/public/interfaces/bindings/tests/test_unions.mojom
|
| index 4e7a540d02f6e3a09267ff946ab045eba10f4f10..28d7aa491fb9f06f20443c81cf304f80a900c48d 100644
|
| --- a/third_party/mojo/src/mojo/public/interfaces/bindings/tests/test_unions.mojom
|
| +++ b/third_party/mojo/src/mojo/public/interfaces/bindings/tests/test_unions.mojom
|
| @@ -40,6 +40,7 @@ union HandleUnion {
|
| handle<data_pipe_consumer> f_data_pipe_consumer;
|
| handle<data_pipe_producer> f_data_pipe_producer;
|
| handle<shared_buffer> f_shared_buffer;
|
| + SmallCache f_small_cache;
|
| };
|
|
|
| struct DummyStruct {
|
| @@ -61,3 +62,12 @@ struct SmallStructNonNullableUnion {
|
| struct SmallObjStruct {
|
| ObjectUnion obj_union;
|
| };
|
| +
|
| +interface SmallCache {
|
| + SetIntValue(int64 int_value);
|
| + GetIntValue() => (int64 int_value);
|
| +};
|
| +
|
| +interface UnionInterface {
|
| + Echo(PodUnion in) => (PodUnion out);
|
| +};
|
|
|