| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 class LocalFrame; | 60 class LocalFrame; |
| 61 class Node; | 61 class Node; |
| 62 class OptionalCursor; | 62 class OptionalCursor; |
| 63 class PlatformGestureEvent; | 63 class PlatformGestureEvent; |
| 64 class PlatformKeyboardEvent; | 64 class PlatformKeyboardEvent; |
| 65 class PlatformTouchEvent; | 65 class PlatformTouchEvent; |
| 66 class PlatformWheelEvent; | 66 class PlatformWheelEvent; |
| 67 class RenderLayer; | 67 class RenderLayer; |
| 68 class RenderLayerScrollableArea; | 68 class RenderLayerScrollableArea; |
| 69 class RenderObject; | 69 class RenderObject; |
| 70 class RenderWidget; | |
| 71 class ScrollableArea; | 70 class ScrollableArea; |
| 72 class Scrollbar; | 71 class Scrollbar; |
| 73 class TextEvent; | 72 class TextEvent; |
| 74 class TouchEvent; | 73 class TouchEvent; |
| 75 class VisibleSelection; | 74 class VisibleSelection; |
| 76 class WheelEvent; | 75 class WheelEvent; |
| 77 class Widget; | 76 class Widget; |
| 78 | 77 |
| 79 typedef EventWithHitTestResults<PlatformGestureEvent> GestureEventWithHitTestRes
ults; | 78 typedef EventWithHitTestResults<PlatformGestureEvent> GestureEventWithHitTestRes
ults; |
| 80 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults
; | 79 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults
; |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 bool m_didStartDrag; | 346 bool m_didStartDrag; |
| 348 | 347 |
| 349 Timer<EventHandler> m_activeIntervalTimer; | 348 Timer<EventHandler> m_activeIntervalTimer; |
| 350 double m_lastShowPressTimestamp; | 349 double m_lastShowPressTimestamp; |
| 351 RefPtr<Element> m_lastDeferredTapElement; | 350 RefPtr<Element> m_lastDeferredTapElement; |
| 352 }; | 351 }; |
| 353 | 352 |
| 354 } // namespace blink | 353 } // namespace blink |
| 355 | 354 |
| 356 #endif // EventHandler_h | 355 #endif // EventHandler_h |
| OLD | NEW |