Changeset 182732 in webkit


Ignore:
Timestamp:
Apr 13, 2015, 7:46:49 AM (10 years ago)
Author:
Gyuyoung Kim
Message:

Fix wrong value variable in ENABLE_NAVIGATOR_HWCONCURRENCY
https://bugs.webkit.org/show_bug.cgi?id=143667

Reviewed by Csaba Osztrogonác.

ENABLE_NAVIGATOR_HWCONCURRENCY has used $registerProtocolHandlerSupport value variable
since r169017. Added $hardwareConcurrencySupport for it.

Additionally networkInfoSupport is removed because this feature was removed due to spec out.

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r182731 r182732  
     12015-04-13  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
     2
     3        Fix wrong value variable in ENABLE_NAVIGATOR_HWCONCURRENCY
     4        https://bugs.webkit.org/show_bug.cgi?id=143667
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        ENABLE_NAVIGATOR_HWCONCURRENCY has used $registerProtocolHandlerSupport value variable
     9        since r169017. Added $hardwareConcurrencySupport for it.
     10
     11        Additionally networkInfoSupport is removed because this feature was removed due to spec out.
     12
     13        * Scripts/webkitperl/FeatureList.pm:
     14
    1152015-04-13  Csaba Osztrogonác  <ossy@webkit.org>
    216
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r182731 r182732  
    7878    $gamepadSupport,
    7979    $geolocationSupport,
     80    $hardwareConcurrencySupport,
    8081    $highDPICanvasSupport,
    8182    $icondatabaseSupport,
     
    103104    $mouseCursorScaleSupport,
    104105    $netscapePluginAPISupport,
    105     $networkInfoSupport,
    106106    $nosniffSupport,
    107107    $notificationsSupport,
     
    322322
    323323    { option => "navigator-hardware-concurrency", desc => "Toggle Navigator hardware concurrenct support",
    324       define => "ENABLE_NAVIGATOR_HWCONCURRENCY", default => 1, value => \$registerProtocolHandlerSupport },
     324      define => "ENABLE_NAVIGATOR_HWCONCURRENCY", default => 1, value => \$hardwareConcurrencySupport },
    325325
    326326    { option => "netscape-plugin-api", desc => "Toggle Netscape Plugin API support",
Note: See TracChangeset for help on using the changeset viewer.