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

Unified Diff: tools/json_schema_compiler/test/idl_basics.idl

Issue 197873009: Support scoped types in PPAPI IDL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests. Created 6 years, 9 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: tools/json_schema_compiler/test/idl_basics.idl
diff --git a/tools/json_schema_compiler/test/idl_basics.idl b/tools/json_schema_compiler/test/idl_basics.idl
index c6f99207c7be10864078c692669332dda9e5e198..463574f258ff4fc9afa1ef477e139ce975dc85c1 100644
--- a/tools/json_schema_compiler/test/idl_basics.idl
+++ b/tools/json_schema_compiler/test/idl_basics.idl
@@ -81,11 +81,20 @@
// |cb|: Override callback comment.
static void function18(Callback7 cb);
- static long function19();
- static MyType1 function20();
- static MyType1[] function21();
- static EnumType function22();
- static EnumType[] function23();
+ static void function20(idl_other_namespace.SomeType value);
+ static void function21(idl_other_namespace.SomeType[] values);
+ static void function22(
+ idl_other_namespace.sub_namespace.AnotherType value);
+ static void function23(
+ idl_other_namespace.sub_namespace.AnotherType[] values);
+
+ static long function24();
+ static MyType1 function25();
+ static MyType1[] function26();
+ static EnumType function27();
+ static EnumType[] function28();
+ static idl_other_namespace.SomeType function29();
+ static idl_other_namespace.SomeType[] function30();
};
interface Events {
« no previous file with comments | « tools/json_schema_compiler/test/error_generation_unittest.cc ('k') | tools/json_schema_compiler/test/idl_other_namespace.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698