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

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

Issue 1151763007: Add the boilerplate for actions to File System Provider API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 5 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: 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 463574f258ff4fc9afa1ef477e139ce975dc85c1..9ee49229460cdde6c2c7a64eb4b56cd937aece46 100644
--- a/tools/json_schema_compiler/test/idl_basics.idl
+++ b/tools/json_schema_compiler/test/idl_basics.idl
@@ -31,6 +31,11 @@
DOMString x;
};
+ dictionary UnionType {
+ (EnumType or DOMString)? x;
+ (DOMString or EnumType) y;
+ };
+
callback Callback1 = void();
callback Callback2 = void(long x);
callback Callback3 = void(MyType1 arg);

Powered by Google App Engine
This is Rietveld 408576698