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

Unified Diff: Source/core/testing/TestingDictionary.idl

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 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
Index: Source/core/testing/TestingDictionary.idl
diff --git a/Source/core/testing/GarbageCollectedScriptWrappable.idl b/Source/core/testing/TestingDictionary.idl
similarity index 50%
copy from Source/core/testing/GarbageCollectedScriptWrappable.idl
copy to Source/core/testing/TestingDictionary.idl
index 0fd3bde6412d03694bd355dbf23cf278a2162ebe..bf16e4b61fb6cf11a77953330877cdfbb9b17ee2 100644
--- a/Source/core/testing/GarbageCollectedScriptWrappable.idl
+++ b/Source/core/testing/TestingDictionary.idl
@@ -4,6 +4,9 @@
[
GarbageCollected
-] interface GarbageCollectedScriptWrappable {
- [NotEnumerable] DOMString toString();
+] dictionary TestingDictionary {
+ long longMember;
+ DOMString stringMember = "defaultStringValue";
+ boolean? booleanOrNullMember = null;
+ sequence<DOMString> stringSequenceMember;
};

Powered by Google App Engine
This is Rietveld 408576698