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

Unified Diff: third_party/WebKit/public/platform/WebEventListenerProperties.h

Issue 2387113002: reflow comments in public/platform/ (Closed)
Patch Set: nit Created 4 years, 2 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/public/platform/WebEventListenerProperties.h
diff --git a/third_party/WebKit/public/platform/WebEventListenerProperties.h b/third_party/WebKit/public/platform/WebEventListenerProperties.h
index 28805ba533d3b7316a7902b686462c45d4bd2e06..6cb8d72f4976d0ebba3e917c2ae7a59d98490790 100644
--- a/third_party/WebKit/public/platform/WebEventListenerProperties.h
+++ b/third_party/WebKit/public/platform/WebEventListenerProperties.h
@@ -10,17 +10,20 @@
namespace blink {
enum class WebEventListenerClass {
- TouchStartOrMove, // This value includes "touchstart", "touchmove" and "pointer" events.
+ TouchStartOrMove, // This value includes "touchstart", "touchmove" and
+ // "pointer" events.
MouseWheel, // This value includes "wheel" and "mousewheel" events.
TouchEndOrCancel, // This value includes "touchend", "touchcancel" events.
};
-// Indicates the variety of event listener types for a given WebEventListenerClass.
+// Indicates the variety of event listener types for a given
+// WebEventListenerClass.
enum class WebEventListenerProperties {
- Nothing, // This should be "None"; but None #defined in X11's X.h
- Passive, // This indicates solely passive listeners.
- Blocking, // This indicates solely blocking listeners.
- BlockingAndPassive, // This indicates >= 1 blocking listener and >= 1 passive listeners.
+ Nothing, // This should be "None"; but None #defined in X11's X.h
+ Passive, // This indicates solely passive listeners.
+ Blocking, // This indicates solely blocking listeners.
+ BlockingAndPassive, // This indicates >= 1 blocking listener and >= 1 passive
+ // listeners.
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698