| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 326 |
| 327 Timer<EventHandler> m_hoverTimer; | 327 Timer<EventHandler> m_hoverTimer; |
| 328 Timer<EventHandler> m_cursorUpdateTimer; | 328 Timer<EventHandler> m_cursorUpdateTimer; |
| 329 | 329 |
| 330 bool m_mouseDownMayStartAutoscroll; | 330 bool m_mouseDownMayStartAutoscroll; |
| 331 bool m_mouseDownWasInSubframe; | 331 bool m_mouseDownWasInSubframe; |
| 332 | 332 |
| 333 Timer<EventHandler> m_fakeMouseMoveEventTimer; | 333 Timer<EventHandler> m_fakeMouseMoveEventTimer; |
| 334 | 334 |
| 335 bool m_svgPan; | 335 bool m_svgPan; |
| 336 RefPtr<SVGElementInstance> m_lastInstanceUnderMouse; | |
| 337 | 336 |
| 338 RenderLayerScrollableArea* m_resizeScrollableArea; | 337 RenderLayerScrollableArea* m_resizeScrollableArea; |
| 339 | 338 |
| 340 RefPtr<Node> m_capturingMouseEventsNode; | 339 RefPtr<Node> m_capturingMouseEventsNode; |
| 341 bool m_eventHandlerWillResetCapturingMouseEventsNode; | 340 bool m_eventHandlerWillResetCapturingMouseEventsNode; |
| 342 | 341 |
| 343 RefPtr<Node> m_nodeUnderMouse; | 342 RefPtr<Node> m_nodeUnderMouse; |
| 344 RefPtr<Node> m_lastNodeUnderMouse; | 343 RefPtr<Node> m_lastNodeUnderMouse; |
| 345 RefPtr<LocalFrame> m_lastMouseMoveEventSubframe; | 344 RefPtr<LocalFrame> m_lastMouseMoveEventSubframe; |
| 346 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; | 345 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 bool m_longTapShouldInvokeContextMenu; | 386 bool m_longTapShouldInvokeContextMenu; |
| 388 | 387 |
| 389 Timer<EventHandler> m_activeIntervalTimer; | 388 Timer<EventHandler> m_activeIntervalTimer; |
| 390 double m_lastShowPressTimestamp; | 389 double m_lastShowPressTimestamp; |
| 391 RefPtr<Element> m_lastDeferredTapElement; | 390 RefPtr<Element> m_lastDeferredTapElement; |
| 392 }; | 391 }; |
| 393 | 392 |
| 394 } // namespace WebCore | 393 } // namespace WebCore |
| 395 | 394 |
| 396 #endif // EventHandler_h | 395 #endif // EventHandler_h |
| OLD | NEW |