OLD | NEW |
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 # Dartium specific attributes. | 49 # Dartium specific attributes. |
50 # DartCustom can have no value or New if New an additional method is added (V8 w
ill not see this method) | 50 # DartCustom can have no value or New if New an additional method is added (V8 w
ill not see this method) |
51 DartCustom=|New|Setter|Getter | 51 DartCustom=|New|Setter|Getter |
52 # DartName should have the alias name to be used to resolve. | 52 # DartName should have the alias name to be used to resolve. |
53 DartName=* | 53 DartName=* |
54 # DartSuppress can have no value will suppress attribute/method, if attribute ca
n also suppress | 54 # DartSuppress can have no value will suppress attribute/method, if attribute ca
n also suppress |
55 # just the DartSuppress=getter or DartSuppress=Setter | 55 # just the DartSuppress=getter or DartSuppress=Setter |
56 DartSuppress=|Getter|Setter | 56 DartSuppress=|Getter|Setter |
57 # No need to setup Dart API scope when a native function is invoked. | 57 # No need to setup Dart API scope when a native function is invoked. |
58 DartNoAutoScope | 58 DartNoAutoScope |
| 59 # TODO(terry): Used in dart.idl - look at removing or using |
| 60 DartSupplemental |
| 61 # TODO(terry): Used in dart.idl (look at eliminating). |
| 62 DartForceOptional |
| 63 # TODO(terry): Used in dart.idl (look at eliminating). |
| 64 DartCallback |
| 65 # TODO(terry): Used in dart.idl (look at eliminating). |
| 66 DartStrictTypeChecking |
59 # End of Dartium attributes. | 67 # End of Dartium attributes. |
60 Default=Undefined | 68 Default=Undefined |
61 DependentLifetime | 69 DependentLifetime |
62 DeprecateAs=* | 70 DeprecateAs=* |
63 DoNotCheckConstants | 71 DoNotCheckConstants |
64 DoNotCheckSecurity=|Setter | 72 DoNotCheckSecurity=|Setter |
65 DoNotCheckSignature | 73 DoNotCheckSignature |
66 EnforceRange | 74 EnforceRange |
67 EventConstructor | 75 EventConstructor |
68 ExposeJSAccessors | 76 ExposeJSAccessors |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 SetWrapperReferenceTo=* | 111 SetWrapperReferenceTo=* |
104 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow | 112 SetterCallWith=ExecutionContext|ScriptArguments|ActiveWindow|FirstWindow |
105 SpecialWrapFor=* | 113 SpecialWrapFor=* |
106 TreatNullAs=NullString | 114 TreatNullAs=NullString |
107 TreatReturnedNullStringAs=Null|Undefined | 115 TreatReturnedNullStringAs=Null|Undefined |
108 TreatUndefinedAs=NullString | 116 TreatUndefinedAs=NullString |
109 TypeChecking=Interface|Nullable|Unrestricted | 117 TypeChecking=Interface|Nullable|Unrestricted |
110 URL | 118 URL |
111 Unforgeable | 119 Unforgeable |
112 WillBeGarbageCollected | 120 WillBeGarbageCollected |
OLD | NEW |