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