| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // TODO(vardhan): Needs a lot more testing. | 5 // TODO(vardhan): Needs a lot more testing. |
| 6 | 6 |
| 7 #include "mojo/public/c/bindings/union.h" | 7 #include <mojo/bindings/union.h> |
| 8 | 8 |
| 9 #include "mojo/public/c/bindings/array.h" | 9 #include <mojo/bindings/array.h> |
| 10 |
| 10 #include "mojo/public/c/bindings/tests/testing_util.h" | 11 #include "mojo/public/c/bindings/tests/testing_util.h" |
| 11 #include "mojo/public/interfaces/bindings/tests/test_structs.mojom-c.h" | 12 #include "mojo/public/interfaces/bindings/tests/test_structs.mojom-c.h" |
| 12 #include "mojo/public/interfaces/bindings/tests/test_unions.mojom-c.h" | 13 #include "mojo/public/interfaces/bindings/tests/test_unions.mojom-c.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 15 |
| 15 namespace { | 16 namespace { |
| 16 | 17 |
| 17 struct mojo_test_StructOfUnionOfReferences* MakeStructOfUnionReference( | 18 struct mojo_test_StructOfUnionOfReferences* MakeStructOfUnionReference( |
| 18 struct MojomBuffer* buf) { | 19 struct MojomBuffer* buf) { |
| 19 auto* struct_with_union = | 20 auto* struct_with_union = |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 struct MojomBuffer buf2 = {buffer_bytes2, sizeof(buffer_bytes2), 0}; | 194 struct MojomBuffer buf2 = {buffer_bytes2, sizeof(buffer_bytes2), 0}; |
| 194 CopyAndCompare( | 195 CopyAndCompare( |
| 195 &buf2, struct_with_union, buf.num_bytes_used, | 196 &buf2, struct_with_union, buf.num_bytes_used, |
| 196 mojo_test_StructOfUnionOfReferences_DeepCopy, | 197 mojo_test_StructOfUnionOfReferences_DeepCopy, |
| 197 mojo_test_StructOfUnionOfReferences_EncodePointersAndHandles, | 198 mojo_test_StructOfUnionOfReferences_EncodePointersAndHandles, |
| 198 mojo_test_StructOfUnionOfReferences_DecodePointersAndHandles); | 199 mojo_test_StructOfUnionOfReferences_DecodePointersAndHandles); |
| 199 } | 200 } |
| 200 } | 201 } |
| 201 | 202 |
| 202 } // namespace | 203 } // namespace |
| OLD | NEW |