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

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

Issue 534133002: [WIP] bindings: Introduce PropertyBag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | « Source/core/testing/DictionaryTest.cpp ('k') | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/InternalDictionary.idl
diff --git a/Source/core/testing/InternalDictionary.idl b/Source/core/testing/InternalDictionary.idl
index 4c36f19af6d6b43c09cd30856485222c844d15c8..672afe4b87b145c1c056c57d3bde2c7322ec2cbe 100644
--- a/Source/core/testing/InternalDictionary.idl
+++ b/Source/core/testing/InternalDictionary.idl
@@ -6,8 +6,15 @@
GarbageCollected
] dictionary InternalDictionary {
long longMember;
- DOMString stringMember = "defaultStringValue";
- boolean? booleanOrNullMember = null;
- double? doubleOrNullMember;
+ long longMemberWithDefault = 42;
+ long? longOrNullMember;
+ long? longOrNullMemberWithDefault = null;
+ boolean booleanMember;
+ double doubleMember;
+ DOMString stringMember;
+ DOMString stringMemberWithDefault = "defaultStringValue";
sequence<DOMString> stringSequenceMember;
+ sequence<DOMString>? stringSequenceOrNullMember;
+ Element elementMember;
+ Element? elementOrNullMember;
};
« no previous file with comments | « Source/core/testing/DictionaryTest.cpp ('k') | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698