Changes between Version 11 and Version 12 of WebKitIDL
- Timestamp:
- Jan 27, 2012, 6:23:04 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v11 v12 29 29 The [Supplemental] IDL helps WebKit modularization. The [Supplemental] IDL makes it possible to add XXX's APIs (e.g. XXX=WebAudio, WebSocket, Blob, GamePad, ...etc) without modifying code outside of WebCore/Modules/XXX/. This helps make XXX a "self-contained module". 30 30 31 Here is an example. Without the [Supplemental] IDL, if we want to add attributes or methods of XXXto DOMWindow,31 Here is an example. Without the [Supplemental] IDL, if we want to add XXX's attributes or methods to DOMWindow, 32 32 33 * we need to modify WebCore/page/DOMWindow.idl to add the IDLs of the attributes or methods33 * we need to modify WebCore/page/DOMWindow.idl to add the IDLs of the XXX's attributes or methods 34 34 35 * we might need to modify WebCore/page/DOMWindow.{h,cpp} to add the C++ implementation of attribute getters and setters ormethod callbacks.35 * we need to modify WebCore/page/DOMWindow.{h,cpp} to add the C++ implementation of the attribute getters and setters or the method callbacks. 36 36 37 37 On the other hand, in the modularized world with the [Supplemental] IDL, we just need to modify the code under WebCore/Modules/XXX/, like this: … … 41 41 interface [ 42 42 Conditional=XXX, 43 Supplemental=DOMWindow 43 Supplemental=DOMWindow // The attributes and methods of this interface are exposed as those of DOMWindow. 44 44 ] DOMWindowXXX { 45 45 attribute foo; … … 50 50 * WebCore/Modules/XXX/DOMWindowXXX.h 51 51 {{{ 52 DOMWindowXXX::foo(...) { ... } // the C++ implementation of the foo attribute getter53 DOMWindowXXX::setFoo(...) { ... } // the C++ implementation of the foo attribute setter54 DOMWindowXXX::bar(...) { ... } // the C++ implementation of the bar method callback52 DOMWindowXXX::foo(...) { ... } // The C++ implementation of the foo attribute getter. 53 DOMWindowXXX::setFoo(...) { ... } // The C++ implementation of the foo attribute setter. 54 DOMWindowXXX::bar(...) { ... } // The C++ implementation of the bar method callback. 55 55 }}} 56 56 57 As shown above, [Supplemental=DOMWindow] indicates that all the attributes and methods in DOMWindowXXX should be exposed on DOMWindow but should be implemented in DOMWindowXXX. In this way, we can implement the attributes and methods without modifying code of DOMWindow.{h,cpp,idl}. If you want to add APIs whose implementations are likely to be independent from WebCore, it is strongly recommended to put the APIs and .h/.cpp files into WebCore/Modules/XXX/ using the [Supplemental] IDL. 57 As shown above, [Supplemental=DOMWindow] indicates that all the attributes and methods of DOMWindowXXX should be exposed on DOMWindow, but should be implemented in DOMWindowXXX. In this way, we can implement the attributes and methods without modifying code of DOMWindow.{h,cpp,idl}. 58 59 If you want to add APIs whose implementations are likely to be independent from WebCore, it is strongly recommended to put the APIs and .h/.cpp files into WebCore/Modules/XXX/ using the [Supplemental] IDL. 58 60 59 61 == ''[...]'' ==