Changeset 95165 in webkit


Ignore:
Timestamp:
Sep 14, 2011 9:46:29 PM (13 years ago)
Author:
Patrick Gansterer
Message:

Replace ENABLE_XHR_RESPONSE_BLOB preprocessor statements in IDL files with Conditional attribute
https://bugs.webkit.org/show_bug.cgi?id=64960

Reviewed by Ryosuke Niwa.

  • xml/XMLHttpRequest.idl:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95158 r95165  
     12011-09-14  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Replace ENABLE_XHR_RESPONSE_BLOB preprocessor statements in IDL files with Conditional attribute
     4        https://bugs.webkit.org/show_bug.cgi?id=64960
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * xml/XMLHttpRequest.idl:
     9
    1102011-09-14  Alexei Svitkine  <asvitkine@chromium.org>
    211
  • trunk/Source/WebCore/xml/XMLHttpRequest.idl

    r89785 r95165  
    5959
    6060        // request
    61 #if defined(ENABLE_XHR_RESPONSE_BLOB) && ENABLE_XHR_RESPONSE_BLOB
    62         attribute [EnabledAtRuntime] boolean asBlob
     61        attribute [Conditional=XHR_RESPONSE_BLOB, EnabledAtRuntime] boolean asBlob
    6362            setter raises(DOMException);
    64 #endif
    6563
    6664        attribute boolean withCredentials
     
    9391        readonly attribute Document responseXML
    9492            getter raises(DOMException);
    95 #if defined(ENABLE_XHR_RESPONSE_BLOB) && ENABLE_XHR_RESPONSE_BLOB
    96         readonly attribute [EnabledAtRuntime] Blob responseBlob
     93        readonly attribute [Conditional=XHR_RESPONSE_BLOB, EnabledAtRuntime] Blob responseBlob
    9794            getter raises(DOMException);
    98 #endif
    9995
    10096        attribute DOMString responseType
Note: See TracChangeset for help on using the changeset viewer.