| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 CustomConstructor | 48 CustomConstructor |
| 49 CustomElementCallbacks | 49 CustomElementCallbacks |
| 50 # Dartium specific attributes. | 50 # Dartium specific attributes. |
| 51 # DartCustom can have no value or New if New an additional method is added (V8 w
ill not see this method) | 51 # DartCustom can have no value or New if New an additional method is added (V8 w
ill not see this method) |
| 52 DartCustom=|New|Setter|Getter | 52 DartCustom=|New|Setter|Getter |
| 53 # DartName should have the alias name to be used to resolve. | 53 # DartName should have the alias name to be used to resolve. |
| 54 DartName=* | 54 DartName=* |
| 55 # DartSuppress can have no value will suppress attribute/method, if attribute ca
n also suppress | 55 # DartSuppress can have no value will suppress attribute/method, if attribute ca
n also suppress |
| 56 # just the DartSuppress=getter or DartSuppress=Setter | 56 # just the DartSuppress=getter or DartSuppress=Setter |
| 57 DartSuppress=|Getter|Setter | 57 DartSuppress=|Getter|Setter |
| 58 # No need to setup Dart API scope when a native function is invoked. |
| 59 DartNoAutoScope |
| 58 # End of Dartium attributes. | 60 # End of Dartium attributes. |
| 59 Default=NullString|Undefined | 61 Default=NullString|Undefined |
| 60 DependentLifetime | 62 DependentLifetime |
| 61 DeprecateAs=* | 63 DeprecateAs=* |
| 62 DoNotCheckConstants | 64 DoNotCheckConstants |
| 63 DoNotCheckSecurity=|Setter | 65 DoNotCheckSecurity=|Setter |
| 64 DoNotCheckSignature | 66 DoNotCheckSignature |
| 65 EnforceRange | 67 EnforceRange |
| 66 EventConstructor | 68 EventConstructor |
| 67 ExposeJSAccessors | 69 ExposeJSAccessors |
| (...skipping 27 matching lines...) Expand all Loading... |
| 95 SetWrapperReferenceFrom=* | 97 SetWrapperReferenceFrom=* |
| 96 SetWrapperReferenceTo=* | 98 SetWrapperReferenceTo=* |
| 97 SetterCallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWi
ndow | 99 SetterCallWith=ExecutionContext|ScriptState|ScriptArguments|ActiveWindow|FirstWi
ndow |
| 98 SpecialWrapFor=* | 100 SpecialWrapFor=* |
| 99 StrictTypeChecking | 101 StrictTypeChecking |
| 100 TreatNullAs=NullString | 102 TreatNullAs=NullString |
| 101 TreatReturnedNullStringAs=Null|Undefined | 103 TreatReturnedNullStringAs=Null|Undefined |
| 102 TreatUndefinedAs=NullString | 104 TreatUndefinedAs=NullString |
| 103 URL | 105 URL |
| 104 Unforgeable | 106 Unforgeable |
| OLD | NEW |