| Index: third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| diff --git a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| index 2466e0e5d3a7c591f7f6b00d9aca695303bbc47b..25c09d2a972b460600c13112f1c2f83908d4d981 100644
|
| --- a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| +++ b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| @@ -17,9 +17,9 @@ WebFeaturePolicyFeature GetWebFeaturePolicyFeature(const String& feature) {
|
| return WebFeaturePolicyFeature::kFullscreen;
|
| if (feature == "payment")
|
| return WebFeaturePolicyFeature::kPayment;
|
| - if (feature == "vibrate")
|
| - return WebFeaturePolicyFeature::kVibrate;
|
| if (RuntimeEnabledFeatures::featurePolicyExperimentalFeaturesEnabled()) {
|
| + if (feature == "vibrate")
|
| + return WebFeaturePolicyFeature::kVibrate;
|
| if (feature == "camera")
|
| return WebFeaturePolicyFeature::kCamera;
|
| if (feature == "eme")
|
|
|