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_; |
} |