Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp

Issue 2636843003: Move most Feature Policy code into content/ (Closed)
Patch Set: Addressing review comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
diff --git a/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp b/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
index 77c0ce17a2369290356d15bd872b5cb3c38f69a3..c722974921d72a616c89aca15e6e3b2f9b4e9bc9 100644
--- a/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
+++ b/third_party/WebKit/Source/modules/vibration/NavigatorVibration.cpp
@@ -81,7 +81,8 @@ bool NavigatorVibration::vibrate(Navigator& navigator,
// TODO(lunalu): When FeaturePolicy is ready, take out the check for the
// runtime flag.
- if (!isFeatureEnabledInFrame(blink::kVibrateFeature, frame)) {
+ if (!isFeatureEnabledInFrame(blink::WebFeaturePolicyFeature::Vibrate,
+ frame)) {
if (RuntimeEnabledFeatures::featurePolicyEnabled()) {
frame->domWindow()->printErrorMessage(
"Navigator.vibrate() is not enabled in feature policy for this "

Powered by Google App Engine
This is Rietveld 408576698