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

Unified Diff: third_party/WebKit/Source/core/events/AddEventListenerOptionsDefaults.h

Issue 1965493002: Add runtime setting to force passive event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/core/events/AddEventListenerOptionsDefaults.h
diff --git a/third_party/WebKit/Source/core/events/AddEventListenerOptionsDefaults.h b/third_party/WebKit/Source/core/events/AddEventListenerOptionsDefaults.h
new file mode 100644
index 0000000000000000000000000000000000000000..20a43cdb600355364c4b54b983b9fe788cf45f2c
--- /dev/null
+++ b/third_party/WebKit/Source/core/events/AddEventListenerOptionsDefaults.h
@@ -0,0 +1,19 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef AddEventListenerOptionsDefaults_h
+#define AddEventListenerOptionsDefaults_h
+
+namespace blink {
+
+enum class PassiveListenerDefault {
+ False, // Default of false.
Rick Byers 2016/05/09 21:48:48 Nit: make it clear this is what's required by spec
dtapuska 2016/05/11 20:01:10 Done.
+ True, // Default of true.
+ DocumentTrue, // Default of true for document level elements, false otherwise.
+ ForceAllTrue // Force all values to be true even when specified.
+};
+
+} // namespace blink
+
+#endif // AddEventListenerOptionsDefaults_h

Powered by Google App Engine
This is Rietveld 408576698