OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/child/runtime_features.h" | 5 #include "content/child/runtime_features.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 if (base::FeatureList::IsEnabled(features::kNewMediaPlaybackUi)) | 223 if (base::FeatureList::IsEnabled(features::kNewMediaPlaybackUi)) |
224 WebRuntimeFeatures::enableNewMediaPlaybackUi(true); | 224 WebRuntimeFeatures::enableNewMediaPlaybackUi(true); |
225 | 225 |
226 if (base::FeatureList::IsEnabled(features::kDocumentWriteEvaluator)) | 226 if (base::FeatureList::IsEnabled(features::kDocumentWriteEvaluator)) |
227 WebRuntimeFeatures::enableDocumentWriteEvaluator(true); | 227 WebRuntimeFeatures::enableDocumentWriteEvaluator(true); |
228 | 228 |
229 WebRuntimeFeatures::enableMediaDocumentDownloadButton( | 229 WebRuntimeFeatures::enableMediaDocumentDownloadButton( |
230 base::FeatureList::IsEnabled(features::kMediaDocumentDownloadButton)); | 230 base::FeatureList::IsEnabled(features::kMediaDocumentDownloadButton)); |
231 | 231 |
232 if (base::FeatureList::IsEnabled(features::kPointerEvents)) | 232 if (base::FeatureList::IsEnabled(features::kPointerEvents)) |
233 WebRuntimeFeatures::enableFeatureFromString("PointerEvent", true); | 233 WebRuntimeFeatures::enablePointerEvent(true); |
234 | 234 |
235 WebRuntimeFeatures::enableFeatureFromString( | 235 WebRuntimeFeatures::enableFeatureFromString( |
236 "FontCacheScaling", | 236 "FontCacheScaling", |
237 base::FeatureList::IsEnabled(features::kFontCacheScaling)); | 237 base::FeatureList::IsEnabled(features::kFontCacheScaling)); |
238 | 238 |
239 if (!base::FeatureList::IsEnabled(features::kPaintOptimizations)) | 239 if (!base::FeatureList::IsEnabled(features::kPaintOptimizations)) |
240 WebRuntimeFeatures::enableFeatureFromString("PaintOptimizations", false); | 240 WebRuntimeFeatures::enableFeatureFromString("PaintOptimizations", false); |
241 | 241 |
242 if (base::FeatureList::IsEnabled(features::kParseHTMLOnMainThread)) | 242 if (base::FeatureList::IsEnabled(features::kParseHTMLOnMainThread)) |
243 WebRuntimeFeatures::enableFeatureFromString("ParseHTMLOnMainThread", true); | 243 WebRuntimeFeatures::enableFeatureFromString("ParseHTMLOnMainThread", true); |
(...skipping 13 matching lines...) Expand all Loading... |
257 if (command_line.HasSwitch(switches::kDisableBlinkFeatures)) { | 257 if (command_line.HasSwitch(switches::kDisableBlinkFeatures)) { |
258 std::vector<std::string> disabled_features = base::SplitString( | 258 std::vector<std::string> disabled_features = base::SplitString( |
259 command_line.GetSwitchValueASCII(switches::kDisableBlinkFeatures), | 259 command_line.GetSwitchValueASCII(switches::kDisableBlinkFeatures), |
260 ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); | 260 ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); |
261 for (const std::string& feature : disabled_features) | 261 for (const std::string& feature : disabled_features) |
262 WebRuntimeFeatures::enableFeatureFromString(feature, false); | 262 WebRuntimeFeatures::enableFeatureFromString(feature, false); |
263 } | 263 } |
264 } | 264 } |
265 | 265 |
266 } // namespace content | 266 } // namespace content |
OLD | NEW |