Changeset 182732 in webkit
- Timestamp:
- Apr 13, 2015, 7:46:49 AM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r182731 r182732 1 2015-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 1 15 2015-04-13 Csaba Osztrogonác <ossy@webkit.org> 2 16 -
trunk/Tools/Scripts/webkitperl/FeatureList.pm
r182731 r182732 78 78 $gamepadSupport, 79 79 $geolocationSupport, 80 $hardwareConcurrencySupport, 80 81 $highDPICanvasSupport, 81 82 $icondatabaseSupport, … … 103 104 $mouseCursorScaleSupport, 104 105 $netscapePluginAPISupport, 105 $networkInfoSupport,106 106 $nosniffSupport, 107 107 $notificationsSupport, … … 322 322 323 323 { 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 }, 325 325 326 326 { option => "netscape-plugin-api", desc => "Toggle Netscape Plugin API support",
Note:
See TracChangeset
for help on using the changeset viewer.