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

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: Make a new class SyntheticPointerActionController 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..1af1f2eb82cc19f7d6e17d708ea6c40988939aef 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 recevied when
tdresser 2016/05/19 17:57:04 received
lanwei 2016/05/20 01:48:16 Done.
+ // we reach to the end of the action sequence.
tdresser 2016/05/19 17:57:04 to the end -> the end
lanwei 2016/05/20 01:48:16 Done.
+ // 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