| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 class Node; | 64 class Node; |
| 65 class OptionalCursor; | 65 class OptionalCursor; |
| 66 class PlatformGestureEvent; | 66 class PlatformGestureEvent; |
| 67 class PlatformKeyboardEvent; | 67 class PlatformKeyboardEvent; |
| 68 class PlatformTouchEvent; | 68 class PlatformTouchEvent; |
| 69 class PlatformWheelEvent; | 69 class PlatformWheelEvent; |
| 70 class RenderLayer; | 70 class RenderLayer; |
| 71 class RenderLayerScrollableArea; | 71 class RenderLayerScrollableArea; |
| 72 class RenderObject; | 72 class RenderObject; |
| 73 class RenderWidget; | 73 class RenderWidget; |
| 74 class SVGElementInstance; | |
| 75 class ScrollableArea; | 74 class ScrollableArea; |
| 76 class Scrollbar; | 75 class Scrollbar; |
| 77 class TextEvent; | 76 class TextEvent; |
| 78 class TouchEvent; | 77 class TouchEvent; |
| 79 class VisibleSelection; | 78 class VisibleSelection; |
| 80 class WheelEvent; | 79 class WheelEvent; |
| 81 class Widget; | 80 class Widget; |
| 82 | 81 |
| 83 class DragState; | 82 class DragState; |
| 84 | 83 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 bool m_longTapShouldInvokeContextMenu; | 387 bool m_longTapShouldInvokeContextMenu; |
| 389 | 388 |
| 390 Timer<EventHandler> m_activeIntervalTimer; | 389 Timer<EventHandler> m_activeIntervalTimer; |
| 391 double m_lastShowPressTimestamp; | 390 double m_lastShowPressTimestamp; |
| 392 RefPtrWillBePersistent<Element> m_lastDeferredTapElement; | 391 RefPtrWillBePersistent<Element> m_lastDeferredTapElement; |
| 393 }; | 392 }; |
| 394 | 393 |
| 395 } // namespace WebCore | 394 } // namespace WebCore |
| 396 | 395 |
| 397 #endif // EventHandler_h | 396 #endif // EventHandler_h |
| OLD | NEW |