Changes between Version 45 and Version 46 of WebKitIDL


Ignore:
Timestamp:
Feb 19, 2012 10:30:00 PM (12 years ago)
Author:
haraken@chromium.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v45 v46  
    346346        [JSCustom] void func(in int a, in int b);
    347347    };
    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:
    350349{{{
    351350    JSValue JSXXX::func(ExecState* exec)
     
    353352        ...;
    354353    }
    355 }}}
    356 Refer to WebCore/bindings/js/JSXXXCustom.cpp for more details.
     354}}} Refer to WebCore/bindings/js/JSXXXCustom.cpp for more details.
    357355
    358356 * Attribute getter in JavaScriptCore: Consider the following example: