Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(665)

Unified Diff: ppapi/generators/test_cgen_range/versions.idl

Issue 7751001: More multi-version support (part 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/generators/test_cgen_range/versions.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/generators/test_cgen_range/versions.idl
===================================================================
--- ppapi/generators/test_cgen_range/versions.idl (revision 98271)
+++ 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);
+};
« no previous file with comments | « ppapi/generators/test_cgen_range/versions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698