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