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

Side by Side Diff: sky/engine/bindings/IDLExtendedAttributes.txt

Issue 1171743002: Change the way we provide custom dart code for IDL bindings. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « sky/engine/bindings/BUILD.gn ('k') | sky/engine/bindings/scripts/code_generator_dart.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # This file describes all Blink IDL extended attributes and allowed values. 2 # This file describes all Blink IDL extended attributes and allowed values.
3 # If any IDL file uses an extended attribute or values not listed below, the 3 # If any IDL file uses an extended attribute or values not listed below, the
4 # build will fail. 4 # build will fail.
5 # If you would like to add a new extended attribute or value, please: 5 # If you would like to add a new extended attribute or value, please:
6 # (1) add the extended attribute or value to this file 6 # (1) add the extended attribute or value to this file
7 # (2) add an explanation to the Blink IDL extended attributes document: 7 # (2) add an explanation to the Blink IDL extended attributes document:
8 # http://www.chromium.org/blink/webidl/blink-idl-extended-attributes 8 # http://www.chromium.org/blink/webidl/blink-idl-extended-attributes
9 # (3) add appropriate test cases to run-bindings-tests 9 # (3) add appropriate test cases to run-bindings-tests
10 # 10 #
(...skipping 24 matching lines...) Expand all
35 35
36 ActiveDOMObject 36 ActiveDOMObject
37 CachedAttribute=* 37 CachedAttribute=*
38 CallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow|T hisValue 38 CallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWindow|T hisValue
39 Constructor 39 Constructor
40 # FIXME: remove [ConstructorCallWith=Document], as can instead use 40 # FIXME: remove [ConstructorCallWith=Document], as can instead use
41 # [ConstructorCallWith=ExecutionContext] + toDocument(executionContext) 41 # [ConstructorCallWith=ExecutionContext] + toDocument(executionContext)
42 ConstructorCallWith=ExecutionContext|Document 42 ConstructorCallWith=ExecutionContext|Document
43 Custom=|Getter|Setter|VisitDOMWrapper|Wrap|PropertyGetter|PropertyEnumerator|Pro pertyQuery 43 Custom=|Getter|Setter|VisitDOMWrapper|Wrap|PropertyGetter|PropertyEnumerator|Pro pertyQuery
44 CustomConstructor 44 CustomConstructor
45 # Sky addition: if present, the IDL compiler will generate a private Dart
46 # interface to be extended by an auxilary file <Interface>.dart next to
47 # <Interface>.idl.
48 CustomDart
49 CustomElementCallbacks 45 CustomElementCallbacks
50 Default=Undefined 46 Default=Undefined
51 DependentLifetime 47 DependentLifetime
52 DoNotCheckConstants 48 DoNotCheckConstants
53 EnforceRange 49 EnforceRange
54 EventConstructor 50 EventConstructor
55 Exposed=* 51 Exposed=*
56 Global=|* 52 Global=|*
57 Immutable 53 Immutable
58 ImplementedAs=* 54 ImplementedAs=*
59 InitializedByEventConstructor 55 InitializedByEventConstructor
60 Iterable 56 Iterable
61 LegacyTreatAsPartialInterface 57 LegacyTreatAsPartialInterface
62 Named 58 Named
63 NamedConstructor=* 59 NamedConstructor=*
64 NoImplHeader 60 NoImplHeader
65 NoInterfaceObject 61 NoInterfaceObject
66 NotEnumerable 62 NotEnumerable
67 NotScriptWrappable 63 NotScriptWrappable
68 OverrideBuiltins 64 OverrideBuiltins
69 PartialInterfaceImplementedAs=* 65 PartialInterfaceImplementedAs=*
66 # Sky addition: if present, the generated interface will be prefixed with
eseidel 2015/06/08 20:59:32 There is nothing other than Sky. :) We're complete
Matt Perry 2015/06/08 21:14:03 I know, but I figured I'd call out where we're dif
67 # underscores so that it's private to the dart:sky module.
68 PrivateDart
70 PutForwards=* 69 PutForwards=*
71 RaisesException=|Getter|Setter|Constructor 70 RaisesException=|Getter|Setter|Constructor
72 Reflect=|* 71 Reflect=|*
73 ReflectEmpty=* 72 ReflectEmpty=*
74 ReflectInvalid=* 73 ReflectInvalid=*
75 ReflectMissing=* 74 ReflectMissing=*
76 ReflectOnly=* 75 ReflectOnly=*
77 Replaceable 76 Replaceable
78 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow 77 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow
79 SetWrapperReferenceFrom=* 78 SetWrapperReferenceFrom=*
80 SetWrapperReferenceTo=* 79 SetWrapperReferenceTo=*
81 SpecialWrapFor=* 80 SpecialWrapFor=*
82 TreatNullAs=NullString|EmptyString 81 TreatNullAs=NullString|EmptyString
83 TreatReturnedNullStringAs=Null|Undefined 82 TreatReturnedNullStringAs=Null|Undefined
84 TreatUndefinedAs=NullString 83 TreatUndefinedAs=NullString
85 TypeChecking=Interface|Unrestricted 84 TypeChecking=Interface|Unrestricted
86 URL 85 URL
OLDNEW
« no previous file with comments | « sky/engine/bindings/BUILD.gn ('k') | sky/engine/bindings/scripts/code_generator_dart.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698