| 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 #ifndef MOJO_PUBLIC_C_BINDINGS_MAP_H_ | 5 #ifndef MOJO_PUBLIC_C_BINDINGS_MAP_H_ |
| 6 #define MOJO_PUBLIC_C_BINDINGS_MAP_H_ | 6 #define MOJO_PUBLIC_C_BINDINGS_MAP_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "mojo/public/c/bindings/array.h" | 10 #include "mojo/public/c/bindings/array.h" |
| 11 #include "mojo/public/c/bindings/buffer.h" | 11 #include "mojo/public/c/bindings/lib/type_descriptor.h" |
| 12 #include "mojo/public/c/bindings/lib/util.h" |
| 12 #include "mojo/public/c/bindings/struct.h" | 13 #include "mojo/public/c/bindings/struct.h" |
| 14 #include "mojo/public/c/system/handle.h" |
| 13 #include "mojo/public/c/system/macros.h" | 15 #include "mojo/public/c/system/macros.h" |
| 14 | 16 |
| 15 MOJO_BEGIN_EXTERN_C | 17 MOJO_BEGIN_EXTERN_C |
| 16 | 18 |
| 17 // A mojom Map is a mojom struct with two MojomArrayHeaders: keys and values. | 19 // A mojom Map is a mojom struct with two MojomArrayHeaders: keys and values. |
| 18 // - Number of elements in keys == number of elements values. | 20 // - Number of elements in keys == number of elements values. |
| 19 // - ith key corresponds to the ith value. | 21 // - ith key corresponds to the ith value. |
| 20 struct MojomMapHeader { | 22 struct MojomMapHeader { |
| 21 struct MojomStructHeader header; | 23 struct MojomStructHeader header; |
| 22 union MojomArrayHeaderPtr keys; | 24 union MojomArrayHeaderPtr keys; |
| 23 union MojomArrayHeaderPtr values; | 25 union MojomArrayHeaderPtr values; |
| 24 }; | 26 }; |
| 25 MOJO_STATIC_ASSERT(sizeof(struct MojomMapHeader) == 24, | 27 MOJO_STATIC_ASSERT(sizeof(struct MojomMapHeader) == 24, |
| 26 "struct MojomMapHeader must be 24 bytes."); | 28 "struct MojomMapHeader must be 24 bytes."); |
| 27 | 29 |
| 28 union MojomMapHeaderPtr { | 30 union MojomMapHeaderPtr { |
| 29 struct MojomMapHeader* ptr; | 31 struct MojomMapHeader* ptr; |
| 30 uint64_t offset; | 32 uint64_t offset; |
| 31 }; | 33 }; |
| 32 MOJO_STATIC_ASSERT(sizeof(union MojomMapHeaderPtr) == 8, | 34 MOJO_STATIC_ASSERT(sizeof(union MojomMapHeaderPtr) == 8, |
| 33 "MojomMapHeaderPtr must be 8 bytes."); | 35 "MojomMapHeaderPtr must be 8 bytes."); |
| 34 | 36 |
| 37 MojomValidationResult MojomMap_Validate( |
| 38 const struct MojomTypeDescriptorStruct* in_type_desc, |
| 39 const struct MojomStructHeader* in_struct, |
| 40 uint32_t in_buf_size, |
| 41 uint32_t in_num_handles, |
| 42 struct MojomValidationContext* inout_context); |
| 43 |
| 35 MOJO_END_EXTERN_C | 44 MOJO_END_EXTERN_C |
| 36 | 45 |
| 37 #endif // MOJO_PUBLIC_C_BINDINGS_MAP_H_ | 46 #endif // MOJO_PUBLIC_C_BINDINGS_MAP_H_ |
| OLD | NEW |