Changes between Version 85 and Version 86 of WebKitIDL


Ignore:
Timestamp:
Apr 25, 2013 11:57:39 AM (11 years ago)
Author:
Christophe Dumez
Comment:

Update [Callback] extended attribute doc due to r149113

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v85 v86  
    370370Summary: ADD SUMMARY
    371371
    372 Usage: [Callback] can be specified on interfaces and parameters:
    373 {{{
    374     interface [
    375         Callback
    376     ] HTMLFoo {
    377         void func(in int a, in [Callback] int b);
     372Usage: [Callback] should be specified on parameters of callback type:
     373{{{
     374    interface HTMLFoo {
     375        void func(int a, [Callback] VoidCallback b);
    378376    };
    379377}}}