OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) | 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 | 246 |
247 EventHandler::~EventHandler() | 247 EventHandler::~EventHandler() |
248 { | 248 { |
249 ASSERT(!m_fakeMouseMoveEventTimer.isActive()); | 249 ASSERT(!m_fakeMouseMoveEventTimer.isActive()); |
250 } | 250 } |
251 | 251 |
252 DEFINE_TRACE(EventHandler) | 252 DEFINE_TRACE(EventHandler) |
253 { | 253 { |
254 #if ENABLE(OILPAN) | 254 #if ENABLE(OILPAN) |
255 visitor->trace(m_mousePressNode); | 255 visitor->trace(m_mousePressNode); |
| 256 visitor->trace(m_resizeScrollableArea); |
256 visitor->trace(m_capturingMouseEventsNode); | 257 visitor->trace(m_capturingMouseEventsNode); |
257 visitor->trace(m_nodeUnderMouse); | 258 visitor->trace(m_nodeUnderMouse); |
258 visitor->trace(m_lastNodeUnderMouse); | 259 visitor->trace(m_lastNodeUnderMouse); |
259 visitor->trace(m_lastMouseMoveEventSubframe); | 260 visitor->trace(m_lastMouseMoveEventSubframe); |
260 visitor->trace(m_lastScrollbarUnderMouse); | 261 visitor->trace(m_lastScrollbarUnderMouse); |
261 visitor->trace(m_clickNode); | 262 visitor->trace(m_clickNode); |
262 visitor->trace(m_dragTarget); | 263 visitor->trace(m_dragTarget); |
263 visitor->trace(m_frameSetBeingResized); | 264 visitor->trace(m_frameSetBeingResized); |
264 visitor->trace(m_latchedWheelEventNode); | 265 visitor->trace(m_latchedWheelEventNode); |
265 visitor->trace(m_previousWheelScrolledNode); | 266 visitor->trace(m_previousWheelScrolledNode); |
(...skipping 3623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3889 unsigned EventHandler::accessKeyModifiers() | 3890 unsigned EventHandler::accessKeyModifiers() |
3890 { | 3891 { |
3891 #if OS(MACOSX) | 3892 #if OS(MACOSX) |
3892 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3893 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
3893 #else | 3894 #else |
3894 return PlatformEvent::AltKey; | 3895 return PlatformEvent::AltKey; |
3895 #endif | 3896 #endif |
3896 } | 3897 } |
3897 | 3898 |
3898 } // namespace blink | 3899 } // namespace blink |
OLD | NEW |