Changes between Version 46 and Version 47 of WebKitIDL


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

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v46 v47  
    346346        [JSCustom] void func(in int a, in int b);
    347347    };
    348 }}} You need to prepare WebCore/bindings/js/JSXXXCustom.cpp and write custom bindings:
     348}}}
     349You need to prepare WebCore/bindings/js/JSXXXCustom.cpp and write custom bindings:
    349350{{{
    350351    JSValue JSXXX::func(ExecState* exec)
     
    352353        ...;
    353354    }
    354 }}} Refer to WebCore/bindings/js/JSXXXCustom.cpp for more details.
     355}}}
     356Refer to WebCore/bindings/js/JSXXXCustom.cpp for more details.
    355357
    356358 * Attribute getter in JavaScriptCore: Consider the following example: