Changes between Version 75 and Version 76 of WebKitIDL
- Timestamp:
- Aug 7, 2012, 2:41:27 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v75 v76 48 48 - [#IsWorkerContext IsWorkerContext(i)][[br]] 49 49 - [#TransferList TransferList(p)][[br]] 50 - [#TypedArray TypedArray(i,m)][[br]] 50 51 - [#CustomCall CustomCall(i)][[br]] 51 52 - [#JSCustomToNativeObject JSCustomToNativeObject(i), JSCustomFinalize(i), JSCustomIsReachable(i), JSCustomMarkFunction(i), JSCustomNamedGetterOnPrototype(i), JSCustomPushEventHandlerScope(i), JSCustomDefineOwnProperty(i), JSCustomDefineOwnPropertyOnPrototype(i), JSCustomGetOwnPropertySlotAndDescriptor(i)][[br]] … … 1508 1509 }}} 1509 1510 1511 == [TypedArray](i,m) == #TypedArray 1512 1513 * [http://www.khronos.org/registry/typedarray/specs/latest/#7 The spec of TypedArray] 1514 1515 Summary: The typed array view types represent a view of an ArrayBuffer that allows for indexing and manipulation. 1516 TypedArray implements ArrayBufferView. Each of the typed array types has the following constructors, properties, constants and methods. 1517 1518 Usage: [TypedArray] can be specified on interfaces, methods: 1519 Example: 1520 1521 {{{ 1522 interface [ 1523 TypedArray=int 1524 ] XXX : ArrayBufferView { 1525 [TypedArray=int] void set(TypedArray array, optional unsigned long offset); 1526 } 1527 }}} 1528 1529 TypedArray=* Allows us to specify any valid typed array view type. 1530 1510 1531 == [CustomCall](i) == #CustomCall 1511 1532