Changeset 142600 in webkit


Ignore:
Timestamp:
Feb 12, 2013 3:06:17 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
https://bugs.webkit.org/show_bug.cgi?id=109481

Reviewed by Daniel Bates.

The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
back in r120574. There are still occurrences of it in various build systems
which should all be removed as they are useless.

.:

  • Source/cmake/OptionsBlackBerry.cmake:
  • Source/cmakeconfig.h.cmake:

Source/WebKit/blackberry:

  • WebCoreSupport/AboutDataEnableFeatures.in:

Source/WebKit/chromium:

  • features.gypi:

Tools:

  • Scripts/webkitperl/FeatureList.pm:
Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r142580 r142600  
     12013-02-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
     4        https://bugs.webkit.org/show_bug.cgi?id=109481
     5
     6        Reviewed by Daniel Bates.
     7
     8        The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
     9        back in r120574. There are still occurrences of it in various build systems
     10        which should all be removed as they are useless.
     11
     12        * Source/cmake/OptionsBlackBerry.cmake:
     13        * Source/cmakeconfig.h.cmake:
     14
    1152013-02-11  Eric Carlson  <eric.carlson@apple.com>
    216
  • trunk/Source/WebKit/blackberry/ChangeLog

    r142576 r142600  
     12013-02-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
     4        https://bugs.webkit.org/show_bug.cgi?id=109481
     5
     6        Reviewed by Daniel Bates.
     7
     8        The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
     9        back in r120574. There are still occurrences of it in various build systems
     10        which should all be removed as they are useless.
     11
     12        * WebCoreSupport/AboutDataEnableFeatures.in:
     13
    1142013-02-11  Ryosuke Niwa  <rniwa@webkit.org>
    215
  • trunk/Source/WebKit/blackberry/WebCoreSupport/AboutDataEnableFeatures.in

    r141202 r142600  
    212212X86
    213213XBL
    214 XHR_RESPONSE_BLOB
    215214XHTMLMP
    216215XOR_DEBUG_AID
  • trunk/Source/WebKit/chromium/ChangeLog

    r142590 r142600  
     12013-02-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
     4        https://bugs.webkit.org/show_bug.cgi?id=109481
     5
     6        Reviewed by Daniel Bates.
     7
     8        The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
     9        back in r120574. There are still occurrences of it in various build systems
     10        which should all be removed as they are useless.
     11
     12        * features.gypi:
     13
    1142013-02-12  Jochen Eisinger  <jochen@chromium.org>
    215
  • trunk/Source/WebKit/chromium/features.gypi

    r142549 r142600  
    134134      'ENABLE_WEB_TIMING=1',
    135135      'ENABLE_WORKERS=1',
    136       'ENABLE_XHR_RESPONSE_BLOB=1',
    137136      'ENABLE_XHR_TIMEOUT=0',
    138137      'ENABLE_XSLT=1',
  • trunk/Source/cmake/OptionsBlackBerry.cmake

    r142417 r142600  
    198198WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO_TRACK OFF)
    199199WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_TIMING ON)
    200 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_XHR_RESPONSE_BLOB ON)
    201200
    202201if (ENABLE_GLES2)
  • trunk/Source/cmakeconfig.h.cmake

    r141985 r142600  
    125125#cmakedefine01 ENABLE_WEB_TIMING
    126126#cmakedefine01 ENABLE_WORKERS
    127 #cmakedefine01 ENABLE_XHR_RESPONSE_BLOB
    128127#cmakedefine01 ENABLE_XHR_TIMEOUT
    129128#cmakedefine01 ENABLE_XSLT
  • trunk/Tools/ChangeLog

    r142593 r142600  
     12013-02-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
     4        https://bugs.webkit.org/show_bug.cgi?id=109481
     5
     6        Reviewed by Daniel Bates.
     7
     8        The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
     9        back in r120574. There are still occurrences of it in various build systems
     10        which should all be removed as they are useless.
     11
     12        * Scripts/webkitperl/FeatureList.pm:
     13
    1142013-02-12  Jochen Eisinger  <jochen@chromium.org>
    215
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r142549 r142600  
    151151    $webTimingSupport,
    152152    $workersSupport,
    153     $xhrResponseBlobSupport,
    154153    $xhrTimeoutSupport,
    155154    $xsltSupport,
     
    468467    { option => "workers", desc => "Toggle Workers support",
    469468      define => "ENABLE_WORKERS", default => (isAppleWebKit() || isGtk() || isBlackBerry() || isEfl()), value => \$workersSupport },
    470 
    471     { option => "xhr-response-blob", desc => "Toggle XHR Response BLOB support",
    472       define => "ENABLE_XHR_RESPONSE_BLOB", default => isBlackBerry(), value => \$xhrResponseBlobSupport },
    473469
    474470    { option => "xhr-timeout", desc => "Toggle XHR Timeout support",
Note: See TracChangeset for help on using the changeset viewer.