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

Unified Diff: content/browser/renderer_host/input/synthetic_gesture.h

Issue 1884883005: Prepare SyntheticPointerAction to handle touch actions for multiple fingers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: return nullptr Created 4 years, 5 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 | « no previous file | content/browser/renderer_host/input/synthetic_gesture.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/input/synthetic_gesture.h
diff --git a/content/browser/renderer_host/input/synthetic_gesture.h b/content/browser/renderer_host/input/synthetic_gesture.h
index f880e5d66718a29fffaeefddb9c3e63c065b6b3f..90d49902470c606a8e52371dd01bf8d770455006 100644
--- a/content/browser/renderer_host/input/synthetic_gesture.h
+++ b/content/browser/renderer_host/input/synthetic_gesture.h
@@ -17,7 +17,7 @@ namespace content {
class SyntheticGestureTarget;
// Base class for synthetic gesture implementations. A synthetic gesture class
-// is responsible for forwaring InputEvents, simulating the gesture, to a
+// is responsible for forwarding InputEvents, simulating the gesture, to a
// SyntheticGestureTarget.
//
// Adding new gesture types involved the following steps:
@@ -38,6 +38,9 @@ class CONTENT_EXPORT SyntheticGesture {
enum Result {
GESTURE_RUNNING,
GESTURE_FINISHED,
+ // Received when the user input parameters for SyntheticPointerAction are
+ // invalid.
+ POINTER_ACTION_INPUT_INVALID,
GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED,
GESTURE_RESULT_MAX = GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED
};
« no previous file with comments | « no previous file | content/browser/renderer_host/input/synthetic_gesture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698