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

Unified Diff: core/testing/InternalDictionary.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 | « core/testing/DictionaryTest.idl ('k') | core/testing/InternalDictionaryDerived.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/testing/InternalDictionary.idl
diff --git a/core/testing/InternalDictionary.idl b/core/testing/InternalDictionary.idl
index d0c4e600c4c9b65ec82fb4ae0a5b3727eb842aa0..b35e9a5e4ffc47f1be2cd3c0f44c3da7c1c54652 100644
--- a/core/testing/InternalDictionary.idl
+++ b/core/testing/InternalDictionary.idl
@@ -4,24 +4,34 @@
enum InternalEnum { "foo", "bar", "baz" };
-[
- GarbageCollected
-] dictionary InternalDictionary {
+dictionary InternalDictionary {
long longMember;
+ [Clamp] long longMemberWithClamp;
+ [EnforceRange] long longMemberWithEnforceRange;
+ // We don't want to add a UseCounter feature for testing, so using KeyboardEventKeyLocation.
+ [DeprecateAs=KeyboardEventKeyLocation, ImplementedAs=longMember] long deprecateLongMember;
long longMemberWithDefault = 42;
long? longOrNullMember;
long? longOrNullMemberWithDefault = null;
boolean booleanMember;
double doubleMember;
+ unrestricted double unrestrictedDoubleMember;
DOMString stringMember;
DOMString stringMemberWithDefault = "defaultStringValue";
+ ByteString byteStringMember;
+ USVString usvStringMember;
sequence<DOMString> stringSequenceMember;
+ sequence<DOMString> stringSequenceMemberWithDefault = [];
sequence<DOMString>? stringSequenceOrNullMember;
InternalEnum enumMember;
InternalEnum enumMemberWithDefault = "foo";
InternalEnum? enumOrNullMember;
+ InternalEnum[] enumArrayMember;
Element elementMember;
Element? elementOrNullMember;
object objectMember;
object? objectOrNullMemberWithDefault = null;
+ (double or DOMString) doubleOrStringMember;
+ sequence<(double or DOMString)> doubleOrStringSequenceMember;
+ EventTarget? eventTargetOrNullMember = null;
};
« no previous file with comments | « core/testing/DictionaryTest.idl ('k') | core/testing/InternalDictionaryDerived.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698