interface.idl revision 5821806d5e7f356e8fa4b058a389a808ea183019
1/*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7/**
8 * This file will test that the IDL snippet matches the comment.
9 */
10
11label Chrome {
12  M14 = 1.0,
13  M15 = 2.0
14};
15/* struct ist { void* X; }; */
16struct ist {
17  mem_t X;
18};
19
20/*
21 * struct iface1 {
22 * int8_t (*mem1)(int16_t x, int32_t y);
23 * int32_t (*mem2)(const struct ist* a);
24 * int32_t (*mem3)(struct ist* b);
25 * int32_t (*mem4)(const void** ptr);
26 * int32_t (*mem5)(void** ptr);
27 * int32_t (*mem6)(void** ptr);
28 * };
29 */
30interface ifaceFoo {
31  int8_t mem1([in] int16_t x, [in] int32_t y);
32  int32_t mem2([in] ist a);
33  int32_t mem3([out] ist b);
34  int32_t mem4([in] blob_t ptr);
35  int32_t mem5([out] blob_t ptr);
36  [version=2.0] int32_t mem6([inout] blob_t ptr);
37};
38
39interface ifaceBar {
40  int8_t testIface([in] ifaceFoo foo, [in] int32_t y);
41  ifaceFoo createIface([in] str_t name);
42};
43
44struct struct2 {
45  ifaceBar bar;
46};
47
48