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

Unified Diff: content/common/input/synthetic_pointer_action_params.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: Modify 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
Index: content/common/input/synthetic_pointer_action_params.h
diff --git a/content/common/input/synthetic_pointer_action_params.h b/content/common/input/synthetic_pointer_action_params.h
index fe6c9f9b4a301b8a240fd1952ddc9893bc7efc53..aa75eb5d1f45887b7dfbf89fc55892af42399a00 100644
--- a/content/common/input/synthetic_pointer_action_params.h
+++ b/content/common/input/synthetic_pointer_action_params.h
@@ -22,14 +22,17 @@ struct CONTENT_EXPORT SyntheticPointerActionParams
: public SyntheticGestureParams {
public:
// Actions are queued up until we receive a PROCESS action, at which point
- // we'll dispatch all queued events.
+ // we'll dispatch all queued events. A FINISH action will be received when
+ // we reach the end of the action sequence.
+ // TODO(lanwei): Will add a 'CANCEL' action.
enum class PointerActionType {
NOT_INITIALIZED,
PRESS,
MOVE,
RELEASE,
PROCESS,
- POINTER_ACTION_TYPE_MAX = PROCESS
+ FINISH,
+ POINTER_ACTION_TYPE_MAX = FINISH
};
SyntheticPointerActionParams();
@@ -47,7 +50,8 @@ struct CONTENT_EXPORT SyntheticPointerActionParams
}
void set_index(int index) {
- DCHECK(pointer_action_type_ != PointerActionType::PROCESS);
+ DCHECK(pointer_action_type_ != PointerActionType::PROCESS &&
+ pointer_action_type_ != PointerActionType::FINISH);
index_ = index;
}
@@ -60,7 +64,8 @@ struct CONTENT_EXPORT SyntheticPointerActionParams
PointerActionType pointer_action_type() const { return pointer_action_type_; }
int index() const {
- DCHECK(pointer_action_type_ != PointerActionType::PROCESS);
+ DCHECK(pointer_action_type_ != PointerActionType::PROCESS &&
+ pointer_action_type_ != PointerActionType::FINISH);
return index_;
}

Powered by Google App Engine
This is Rietveld 408576698