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

Unified Diff: ppapi/generators/test_parser/interface.idl

Issue 7272043: Update Lexer/Parser to support '#inline' and 'label' (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 6 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
Index: ppapi/generators/test_parser/interface.idl
===================================================================
--- ppapi/generators/test_parser/interface.idl (revision 90352)
+++ ppapi/generators/test_parser/interface.idl (working copy)
@@ -5,21 +5,21 @@
/* Tests for interface */
-/* OK Interface(Interface_0_1) */
-interface Interface_0_1 {
- /* OK Function(OneParam) */
+/* OK Interface(Interface1) */
+interface Interface1 {
+ /* OK Member(OneParam) */
PP_Bool OneParam(
/* OK Param(resource) */
[in] PP_Resource resource);
- /* OK Function(TwoParam) */
+ /* OK Member(TwoParam) */
PP_Resource TwoParam(
/* OK Param(instance) */
[in] PP_Instance instance,
/* OK Param(size) */
[in] PP_Size size);
- /* OK Function(ThreeParam) */
+ /* OK Member(ThreeParam) */
PP_Bool ThreeParam(
/* OK Param(graphics_2d) */
[in] PP_Resource graphics_2d,
@@ -30,14 +30,14 @@
};
-/* OK Interface(Interface_0_2) */
-interface Interface_0_2 {
- /* OK Function(OneParam) */
+/* OK Interface(Interface2) */
+interface Interface2 {
+ /* OK Member(OneParam) */
PP_Bool OneParam(
/* OK Param(resource) */
[in] PP_Resource resource);
- /* OK Function(TwoParam) */
+ /* OK Member(TwoParam) */
PP_Resource TwoParam(
/* OK Param(instance) */
[in] PP_Instance instance,
@@ -45,7 +45,7 @@
/* FAIL Missing argument. */
[in] PP_Size size, );
- /* OK Function(ThreeParam) */
+ /* OK Member(ThreeParam) */
PP_Bool ThreeParam(
/* OK Param(graphics_2d) */
[in] PP_Resource graphics_2d,

Powered by Google App Engine
This is Rietveld 408576698