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

Unified Diff: third_party/WebKit/Source/web/WebRuntimeFeatures.cpp

Issue 2283013002: Adding chrome flag to disable implicit capture (Closed)
Patch Set: Created 4 years, 4 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/web/WebRuntimeFeatures.cpp
diff --git a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
index a51c1ff626f4adafb40ae691a74bbd995477d4d5..b9a6ded44b2918e4f39e638f10922c758185fc27 100644
--- a/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
+++ b/third_party/WebKit/Source/web/WebRuntimeFeatures.cpp
@@ -235,6 +235,11 @@ void WebRuntimeFeatures::enablePointerEvent(bool enable)
RuntimeEnabledFeatures::setPointerEventEnabled(enable);
}
+void WebRuntimeFeatures::enablePointerEventNoImplicitCapture(bool enable)
+{
+ RuntimeEnabledFeatures::setPointerEventNoImplicitCaptureEnabled(enable);
+}
+
void WebRuntimeFeatures::enableScriptedSpeech(bool enable)
{
RuntimeEnabledFeatures::setScriptedSpeechEnabled(enable);

Powered by Google App Engine
This is Rietveld 408576698