| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 Member<Element> m_lastDeferredTapElement; | 501 Member<Element> m_lastDeferredTapElement; |
| 502 | 502 |
| 503 // Only used with the ScrollCustomization runtime enabled feature. | 503 // Only used with the ScrollCustomization runtime enabled feature. |
| 504 std::deque<int> m_currentScrollChain; | 504 std::deque<int> m_currentScrollChain; |
| 505 // True iff some of the delta has been consumed for the current | 505 // True iff some of the delta has been consumed for the current |
| 506 // scroll sequence in this frame, or any child frames. Only used | 506 // scroll sequence in this frame, or any child frames. Only used |
| 507 // with ScrollCustomization. If some delta has been consumed, a | 507 // with ScrollCustomization. If some delta has been consumed, a |
| 508 // scroll which shouldn't propagate can't cause any element to | 508 // scroll which shouldn't propagate can't cause any element to |
| 509 // scroll other than the |m_previousGestureScrolledNode|. | 509 // scroll other than the |m_previousGestureScrolledNode|. |
| 510 bool m_deltaConsumedForScrollSequence; | 510 bool m_deltaConsumedForScrollSequence; |
| 511 |
| 512 // True if waiting on first touch move after a touch start. |
| 513 bool m_waitingForFirstTouchMove; |
| 511 }; | 514 }; |
| 512 | 515 |
| 513 } // namespace blink | 516 } // namespace blink |
| 514 | 517 |
| 515 WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS(blink::EventHandler::TouchInfo); | 518 WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS(blink::EventHandler::TouchInfo); |
| 516 | 519 |
| 517 #endif // EventHandler_h | 520 #endif // EventHandler_h |
| OLD | NEW |