Changes between Version 75 and Version 76 of WebKitIDL


Ignore:
Timestamp:
Aug 7, 2012, 2:41:27 AM (13 years ago)
Author:
Vineet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v75 v76  
    4848 - [#IsWorkerContext IsWorkerContext(i)][[br]]
    4949 - [#TransferList TransferList(p)][[br]]
     50 - [#TypedArray TypedArray(i,m)][[br]]
    5051 - [#CustomCall CustomCall(i)][[br]]
    5152 - [#JSCustomToNativeObject JSCustomToNativeObject(i), JSCustomFinalize(i), JSCustomIsReachable(i), JSCustomMarkFunction(i), JSCustomNamedGetterOnPrototype(i), JSCustomPushEventHandlerScope(i), JSCustomDefineOwnProperty(i), JSCustomDefineOwnPropertyOnPrototype(i), JSCustomGetOwnPropertySlotAndDescriptor(i)][[br]]
     
    15081509}}}
    15091510
     1511== [TypedArray](i,m) == #TypedArray
     1512
     1513* [http://www.khronos.org/registry/typedarray/specs/latest/#7 The spec of TypedArray]
     1514
     1515Summary: The typed array view types represent a view of an ArrayBuffer that allows for indexing and manipulation.
     1516TypedArray implements ArrayBufferView. Each of the typed array types has the following constructors, properties, constants and methods.
     1517
     1518Usage: [TypedArray] can be specified on interfaces, methods:
     1519Example:
     1520
     1521{{{
     1522interface [
     1523    TypedArray=int
     1524] XXX : ArrayBufferView {
     1525    [TypedArray=int] void set(TypedArray array, optional unsigned long offset);
     1526}
     1527}}}
     1528
     1529TypedArray=* Allows us to specify any valid typed array view type.
     1530
    15101531== [CustomCall](i) == #CustomCall
    15111532