Index: ppapi/generators/test_cgen_range/versions.idl |
=================================================================== |
--- ppapi/generators/test_cgen_range/versions.idl (revision 98268) |
+++ ppapi/generators/test_cgen_range/versions.idl (working copy) |
@@ -11,26 +11,34 @@ |
M15 = 2.0 |
}; |
-[version=0.0] |
describe { |
- /** Standard Ints. */ |
int32_t; |
}; |
-/* Bogus Struct */ |
+/* Bogus Struct Foo */ |
[version=0.0] |
-struct PP_Size { |
+struct Foo { |
/** |
- * Comment for function |
+ * Comment for function x |
*/ |
[version=0.0] int32_t Foo(int32_t x); |
/** |
- * Comment for function |
+ * Comment for function x,y |
*/ |
[version=1.0] int32_t Foo(int32_t x, int32_t y); |
/** |
- * Comment for function |
+ * Comment for function x,y,z |
*/ |
[version=2.0] int32_t Foo(int32_t x, int32_t y, int32_t z); |
}; |
+ |
+ |
+/* Inherit revisions thanks to Foo */ |
+[version=0.0] |
+interface Bar { |
+ /** |
+ * Comment for function |
+ */ |
+ int32_t UseFoo(Foo val); |
+}; |