From: gyuyoung.kim@webkit.org Date: Mon, 13 Apr 2015 14:46:49 +0000 (+0000) Subject: Fix wrong value variable in ENABLE_NAVIGATOR_HWCONCURRENCY X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=acc1998272a4027537de00600ba4987e65a7f1d1 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: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@182732 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/ChangeLog b/Tools/ChangeLog index a78e23d3a5f2..eb5aedad7df4 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,17 @@ +2015-04-13 Gyuyoung Kim + + 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: + 2015-04-13 Csaba Osztrogonác [cmake] Add ENABLE(ATTACHMENT_ELEMENT) to the build system diff --git a/Tools/Scripts/webkitperl/FeatureList.pm b/Tools/Scripts/webkitperl/FeatureList.pm index 32f8c98b703a..00032c1d0254 100644 --- a/Tools/Scripts/webkitperl/FeatureList.pm +++ b/Tools/Scripts/webkitperl/FeatureList.pm @@ -77,6 +77,7 @@ my ( $fullscreenAPISupport, $gamepadSupport, $geolocationSupport, + $hardwareConcurrencySupport, $highDPICanvasSupport, $icondatabaseSupport, $indexedDatabaseSupport, @@ -102,7 +103,6 @@ my ( $mhtmlSupport, $mouseCursorScaleSupport, $netscapePluginAPISupport, - $networkInfoSupport, $nosniffSupport, $notificationsSupport, $orientationEventsSupport, @@ -321,7 +321,7 @@ my @features = ( define => "ENABLE_NAVIGATOR_CONTENT_UTILS", default => isEfl(), value => \$registerProtocolHandlerSupport }, { option => "navigator-hardware-concurrency", desc => "Toggle Navigator hardware concurrenct support", - define => "ENABLE_NAVIGATOR_HWCONCURRENCY", default => 1, value => \$registerProtocolHandlerSupport }, + define => "ENABLE_NAVIGATOR_HWCONCURRENCY", default => 1, value => \$hardwareConcurrencySupport }, { option => "netscape-plugin-api", desc => "Toggle Netscape Plugin API support", define => "ENABLE_NETSCAPE_PLUGIN_API", default => !isIOSWebKit(), value => \$netscapePluginAPISupport },