Changes between Version 46 and Version 47 of WebKitIDL
- Timestamp:
- Feb 19, 2012, 10:31:32 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v46 v47 346 346 [JSCustom] void func(in int a, in int b); 347 347 }; 348 }}} You need to prepare WebCore/bindings/js/JSXXXCustom.cpp and write custom bindings: 348 }}} 349 You need to prepare WebCore/bindings/js/JSXXXCustom.cpp and write custom bindings: 349 350 {{{ 350 351 JSValue JSXXX::func(ExecState* exec) … … 352 353 ...; 353 354 } 354 }}} Refer to WebCore/bindings/js/JSXXXCustom.cpp for more details. 355 }}} 356 Refer to WebCore/bindings/js/JSXXXCustom.cpp for more details. 355 357 356 358 * Attribute getter in JavaScriptCore: Consider the following example: