Changes between Version 81 and Version 82 of WebKitIDL


Ignore:
Timestamp:
Jan 29, 2013, 10:30:41 AM (12 years ago)
Author:
tsepez@chromium.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v81 v82  
    6565 - [#ArrayClass ArrayClass(i)][[br]]
    6666 - [#OmitConstructor OmitConstructor, Immutable, MasqueradesAsUndefined, CustomGetOwnPropertySlot, ReplaceableConstructor, ExtendsDOMGlobalObject, IsIndex, V8DoNotCheckSignature, NumericIndexedGetter][[br]]
     67 - [#ImplementationNamespace ImplementationNamespace(i)][[br]]
     68 - [#V8SkipVTableValidation V8SkipeVTableValidation(i), ImplementationLacksVTable(i),][[br]]
     69
    6770
    6871= Overview = #Overview
     
    18711874
    18721875Might be deprecated. Discussion is on-going.
     1876
     1877== [ImplementationNameSpace] == #ImplementationNamespace
     1878
     1879Summary: Specifies the namespace for the corresponding native type. 
     1880
     1881By default, the namespace is WebCore.  This is presently used to mark WTF types.
     1882
     1883Usage: [ImplementationNamespace] can be specified on interfaces:
     1884{{{
     1885    interface [
     1886        ImplementationNamespace=WTF
     1887    ] ArrayBuffer {
     1888    };
     1889}}}
     1890
     1891== [V8SkipVTableValidation], [ImplementationLacksVTable] == #V8SkiptVTableValidation
     1892
     1893Summary: Specifies that a type can not be checked as part of the V8 Bindings Integrity option.
     1894
     1895V8 Bindings Integrity tries to ensure that free/corrupted objects are not wrapped by V8, thereby reducing their exploitability. In order for that to be the case, the implementation must have a distinct VTable pointer in its first word.
     1896
     1897Usage: [V8SkipVTableValidation] and [ImplementationLacksVTable] can be specified on interfaces.
     1898
     1899{{{
     1900    interface [
     1901        V8SkipVTableValidation
     1902    ] XXX {
     1903    };
     1904}}}
     1905
     1906{{{
     1907    interface [
     1908        ImplementationLacksVTable
     1909    ] XXX {
     1910    };
     1911}}}