OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /** | 7 /** |
8 * This file will test that the pnacl-generated wrapper functions match | 8 * This file will test that the pnacl-generated wrapper functions match |
9 * the comments in this IDL. | 9 * the comments in this IDL. |
10 */ | 10 */ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 146 |
147 [version=1.0] | 147 [version=1.0] |
148 int32_t foo1([in] some_struct[] a); | 148 int32_t foo1([in] some_struct[] a); |
149 | 149 |
150 /* Not generating wrapper interface for PPP_SomeWrap */ | 150 /* Not generating wrapper interface for PPP_SomeWrap */ |
151 [version=2.0] | 151 [version=2.0] |
152 int32_t foo1([in] some_struct2 a); | 152 int32_t foo1([in] some_struct2 a); |
153 [version=2.0] | 153 [version=2.0] |
154 void foo2([in] int32_t a); | 154 void foo2([in] int32_t a); |
155 }; | 155 }; |
| 156 |
| 157 [no_interface_string] |
| 158 interface PPP_NoIFString { |
| 159 int32_t Dummy([in] some_struct a); |
| 160 }; |
| 161 |
OLD | NEW |