Changes between Version 125 and Version 126 of WebKitIDL
- Timestamp:
- Jun 12, 2013, 5:49:37 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v125 v126 13 13 - [#Clamp Clamp(a,p)][[br]] 14 14 - [#Custom Custom(m,a), CustomGetter(a), CustomSetter(a)][[br]] 15 - [#CallWith CallWith( i,m,a)][[br]]15 - [#CallWith CallWith(m,a)][[br]] 16 16 - [#StrictTypeChecking StrictTypeChecking(m,a,p)][[br]] 17 17 - [#ReturnNewObject ReturnNewObject(m,a)][[br]] … … 22 22 - [#CachedAttribute CachedAttribute(a)][[br]] 23 23 - [#JSWindowEventListener JSWindowEventListener(a)][[br]] 24 - [#Constructor Constructor(i), C allWith(i,m,a), ConstructorRaisesException(i)][[br]]24 - [#Constructor Constructor(i), ConstructorCallWith(i), ConstructorRaisesException(i)][[br]] 25 25 - [#ConstructorTemplate ConstructorTemplate(i), InitializedByEventConstructor(a)][[br]] 26 26 - [#NamedConstructor NamedConstructor(i)][[br]] … … 404 404 Note: ObjC, GObject and CPP bindings do not support custom bindings. 405 405 406 == `[CallWith]`( i,m,a) == #CallWith406 == `[CallWith]`(m,a) == #CallWith 407 407 408 408 Summary: `[CallWith]` indicates that the bindings code calls a WebCore method with additional information. … … 421 421 }}} 422 422 423 Note: `[CallWith]` can be also specified on interfaces but it has a different meaning. 424 Refer to [#Constructor the `[Constructor]` section] for `[CallWith]` on interfaces. 423 Note: See `[ConstructorCallWith]` in the [#Constructor [Constructor] section] for similar functionality on constructors. 425 424 426 425 In case of func1(...), HTMLFoo::func1(ScriptExecutionContext* context, int a, int b) is called in WebCore. … … 648 647 ADD EXPLANATIONS 649 648 650 == `[Constructor]`(i), `[C allWith]`(i,m,a), `[ConstructorRaisesException](i)` == #Constructor649 == `[Constructor]`(i), `[ConstructorCallWith]`(i), `[ConstructorRaisesException](i)` == #Constructor 651 650 652 651 * [http://dev.w3.org/2006/webapi/WebIDL/#Constructor The spec of Constructor] 653 652 654 653 Summary: `[Constructor]` indicates that the interface should have constructor, i.e. "new XXX()". 655 `[C allWith]` and `[ConstructorRaisesException]` add information when the constructor callback is called in WebCore.656 657 Usage: `[Constructor]`, `[C allWith]` and `[ConstructorRaisesException]` can be specified on interfaces:654 `[ConstructorCallWith]` and `[ConstructorRaisesException]` add information when the constructor callback is called in WebCore. 655 656 Usage: `[Constructor]`, `[ConstructorCallWith]` and `[ConstructorRaisesException]` can be specified on interfaces: 658 657 {{{ 659 658 [ 660 659 Constructor(float x, float y, DOMString str), 661 660 ConstructorRaisesException, 662 C allWith=ScriptExecutionContext661 ConstructorCallWith=ScriptExecutionContext 663 662 ] interface XXX { 664 663 }; … … 696 695 697 696 If `XXX::create(...)` needs additional information like ScriptExecutionContext, 698 you can specify `[C allWith=ScriptExecutionContext]`.697 you can specify `[ConstructorCallWith=ScriptExecutionContext]`. 699 698 Then `XXX::create(...)` can have the following signature: 700 699 {{{ … … 705 704 }}} 706 705 You can retrieve document or frame from ScriptExecutionContext. 707 Please see [#CallWith another [CallWith] section] for more details. 708 709 Note that `[CallWith=...]` arguments are added at the head of `XXX::create(...)`'s arguments, 706 707 Note that `[ConstructorCallWith=...]` arguments are added at the head of `XXX::create(...)`'s arguments, 710 708 and the ExceptionCode argument is added at the tail of `XXX::create(...)`'s arguments. 711 709