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

Side by Side Diff: third_party/WebKit/public/platform/WebEventListenerProperties.h

Issue 1577263004: Communicate whether passive event listeners exist to cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners
Patch Set: Rebase Created 4 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WebEventListenerProperties_h
6 #define WebEventListenerProperties_h
7
8 #include "WebCommon.h"
9
10 namespace blink {
11
12 enum class WebEventListenerClass {
13 Touch, // This value includes "pointer" events.
14 MouseWheel // This value includes "wheel" and "mousewheel" events.
15 };
16
17 // Indicates the variety of event listener types for a given WebEventListenerCla ss.
18 enum class WebEventListenerProperties {
19 Nothing, // This should be "None"; but None #defined in X11's X.h
20 Passive,
21 Blocking,
Rick Byers 2016/02/04 22:18:57 nit: add a comment clarifying that Blocking includ
22 };
23
24 } // namespace blink
25
26 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698