| 1267 | } |
| 1268 | |
| 1269 | void UserEventStream::EndDoubleTapAndHold(Touch const & touch) |
| 1270 | { |
| 1271 | TEST_CALL(END_DOUBLE_TAP_AND_HOLD); |
| 1272 | ASSERT_EQUAL(m_state, STATE_DOUBLE_TAP_HOLD, ()); |
| 1273 | m_state = STATE_EMPTY; |
| 1274 | if (m_listener) |
| 1275 | m_listener->OnScaleEnded(); |
| 1276 | } |
| 1277 | |
| 1278 | bool UserEventStream::IsInUserAction() const |
| 1279 | { |
nothing calls this directly
no test coverage detected