Chromium Code Reviews| Index: content/child/runtime_features.cc |
| diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc |
| index 4eec4971c3f3377e94178c83371ca57bbdf6973f..b783df3bdd63ad83df54c5ef83fcb5d74ad293b0 100644 |
| --- a/content/child/runtime_features.cc |
| +++ b/content/child/runtime_features.cc |
| @@ -317,6 +317,9 @@ void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( |
| features::kSendBeaconThrowForBlobWithNonSimpleType)) |
| WebRuntimeFeatures::enableSendBeaconThrowForBlobWithNonSimpleType(true); |
| + WebRuntimeFeatures::enableAccessibilityObjectModel( |
| + base::FeatureList::IsEnabled(features::kAccessibilityObjectModel)); |
|
esprehn
2017/04/04 19:06:20
Why features:: instead of switches:: This is diffe
dmazzoni
2017/04/04 19:28:16
I think features are more flexible, right? We get
esprehn
2017/04/04 19:59:44
Ah okay that makes sense, is there a doc somewhere
|
| + |
| #if defined(OS_ANDROID) |
| if (command_line.HasSwitch(switches::kDisableMediaSessionAPI)) |
| WebRuntimeFeatures::enableMediaSession(false); |