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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 | 347 |
348 bool m_svgPan; | 348 bool m_svgPan; |
349 | 349 |
350 RenderLayerScrollableArea* m_resizeScrollableArea; | 350 RenderLayerScrollableArea* m_resizeScrollableArea; |
351 | 351 |
352 RefPtrWillBeMember<Node> m_capturingMouseEventsNode; | 352 RefPtrWillBeMember<Node> m_capturingMouseEventsNode; |
353 bool m_eventHandlerWillResetCapturingMouseEventsNode; | 353 bool m_eventHandlerWillResetCapturingMouseEventsNode; |
354 | 354 |
355 RefPtrWillBeMember<Node> m_nodeUnderMouse; | 355 RefPtrWillBeMember<Node> m_nodeUnderMouse; |
356 RefPtrWillBeMember<Node> m_lastNodeUnderMouse; | 356 RefPtrWillBeMember<Node> m_lastNodeUnderMouse; |
357 RefPtr<LocalFrame> m_lastMouseMoveEventSubframe; | 357 RefPtrWillBeMember<LocalFrame> m_lastMouseMoveEventSubframe; |
358 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; | 358 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; |
359 Cursor m_currentMouseCursor; | 359 Cursor m_currentMouseCursor; |
360 | 360 |
361 int m_clickCount; | 361 int m_clickCount; |
362 RefPtrWillBeMember<Node> m_clickNode; | 362 RefPtrWillBeMember<Node> m_clickNode; |
363 | 363 |
364 RefPtrWillBeMember<Node> m_dragTarget; | 364 RefPtrWillBeMember<Node> m_dragTarget; |
365 bool m_shouldOnlyFireDragOverEvent; | 365 bool m_shouldOnlyFireDragOverEvent; |
366 | 366 |
367 RefPtrWillBeMember<HTMLFrameSetElement> m_frameSetBeingResized; | 367 RefPtrWillBeMember<HTMLFrameSetElement> m_frameSetBeingResized; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 bool m_longTapShouldInvokeContextMenu; | 402 bool m_longTapShouldInvokeContextMenu; |
403 | 403 |
404 Timer<EventHandler> m_activeIntervalTimer; | 404 Timer<EventHandler> m_activeIntervalTimer; |
405 double m_lastShowPressTimestamp; | 405 double m_lastShowPressTimestamp; |
406 RefPtrWillBeMember<Element> m_lastDeferredTapElement; | 406 RefPtrWillBeMember<Element> m_lastDeferredTapElement; |
407 }; | 407 }; |
408 | 408 |
409 } // namespace blink | 409 } // namespace blink |
410 | 410 |
411 #endif // EventHandler_h | 411 #endif // EventHandler_h |
OLD | NEW |