| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 class LocalFrame; | 65 class LocalFrame; |
| 66 class Node; | 66 class Node; |
| 67 class OptionalCursor; | 67 class OptionalCursor; |
| 68 class PlatformGestureEvent; | 68 class PlatformGestureEvent; |
| 69 class PlatformKeyboardEvent; | 69 class PlatformKeyboardEvent; |
| 70 class PlatformTouchEvent; | 70 class PlatformTouchEvent; |
| 71 class PlatformWheelEvent; | 71 class PlatformWheelEvent; |
| 72 class RenderLayer; | 72 class RenderLayer; |
| 73 class RenderLayerScrollableArea; | 73 class RenderLayerScrollableArea; |
| 74 class RenderObject; | 74 class RenderObject; |
| 75 class RenderWidget; | |
| 76 class ScrollableArea; | 75 class ScrollableArea; |
| 77 class Scrollbar; | 76 class Scrollbar; |
| 78 class TextEvent; | 77 class TextEvent; |
| 79 class TouchEvent; | |
| 80 class VisibleSelection; | 78 class VisibleSelection; |
| 81 class WheelEvent; | 79 class WheelEvent; |
| 82 class Widget; | 80 class Widget; |
| 83 | 81 |
| 84 typedef EventWithHitTestResults<PlatformGestureEvent> GestureEventWithHitTestRes
ults; | 82 typedef EventWithHitTestResults<PlatformGestureEvent> GestureEventWithHitTestRes
ults; |
| 85 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults
; | 83 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults
; |
| 86 | 84 |
| 87 enum AppendTrailingWhitespace { ShouldAppendTrailingWhitespace, DontAppendTraili
ngWhitespace }; | 85 enum AppendTrailingWhitespace { ShouldAppendTrailingWhitespace, DontAppendTraili
ngWhitespace }; |
| 88 enum CheckDragHysteresis { ShouldCheckDragHysteresis, DontCheckDragHysteresis }; | 86 enum CheckDragHysteresis { ShouldCheckDragHysteresis, DontCheckDragHysteresis }; |
| 89 | 87 |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 bool m_longTapShouldInvokeContextMenu; | 404 bool m_longTapShouldInvokeContextMenu; |
| 407 | 405 |
| 408 Timer<EventHandler> m_activeIntervalTimer; | 406 Timer<EventHandler> m_activeIntervalTimer; |
| 409 double m_lastShowPressTimestamp; | 407 double m_lastShowPressTimestamp; |
| 410 RefPtrWillBeMember<Element> m_lastDeferredTapElement; | 408 RefPtrWillBeMember<Element> m_lastDeferredTapElement; |
| 411 }; | 409 }; |
| 412 | 410 |
| 413 } // namespace blink | 411 } // namespace blink |
| 414 | 412 |
| 415 #endif // EventHandler_h | 413 #endif // EventHandler_h |
| OLD | NEW |