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

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: Fix comments 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | third_party/WebKit/Source/core/events/EventTarget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..8887c1e8ee532e53a76c800927d93da006a1fc98
--- /dev/null
+++ b/third_party/WebKit/Source/core/events/AddEventListenerOptionsDefaults.h
@@ -0,0 +1,25 @@
+// 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 {
+
+// Defines the default for 'passive' field used in the AddEventListenerOptions interface
+// when javascript calls addEventListener.
+// |False| is the default specified in
+// https://dom.spec.whatwg.org/#dictdef-addeventlisteneroptions. However
+// specifying a different default value is useful in demonstrating the
+// power of passive event listeners.
+enum class PassiveListenerDefault {
+ False, // Default of false.
+ 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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | third_party/WebKit/Source/core/events/EventTarget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698