| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef SKY_ENGINE_CORE_PAGE_EVENTHANDLER_H_ | 26 #ifndef SKY_ENGINE_CORE_PAGE_EVENTHANDLER_H_ |
| 27 #define SKY_ENGINE_CORE_PAGE_EVENTHANDLER_H_ | 27 #define SKY_ENGINE_CORE_PAGE_EVENTHANDLER_H_ |
| 28 | 28 |
| 29 #include "sky/engine/core/editing/TextGranularity.h" | 29 #include "sky/engine/core/editing/TextGranularity.h" |
| 30 #include "sky/engine/core/events/TextEventInputType.h" | 30 #include "sky/engine/core/events/TextEventInputType.h" |
| 31 #include "sky/engine/core/page/FocusType.h" | 31 #include "sky/engine/core/page/FocusType.h" |
| 32 #include "sky/engine/core/rendering/HitTestRequest.h" | 32 #include "sky/engine/core/rendering/HitTestRequest.h" |
| 33 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" | 33 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" |
| 34 #include "sky/engine/platform/Cursor.h" | 34 #include "sky/engine/platform/Cursor.h" |
| 35 #include "sky/engine/platform/PlatformEvent.h" | |
| 36 #include "sky/engine/platform/Timer.h" | 35 #include "sky/engine/platform/Timer.h" |
| 37 #include "sky/engine/platform/geometry/LayoutPoint.h" | 36 #include "sky/engine/platform/geometry/LayoutPoint.h" |
| 38 #include "sky/engine/platform/heap/Handle.h" | 37 #include "sky/engine/platform/heap/Handle.h" |
| 39 #include "sky/engine/platform/scroll/ScrollTypes.h" | 38 #include "sky/engine/platform/scroll/ScrollTypes.h" |
| 40 #include "sky/engine/wtf/Forward.h" | 39 #include "sky/engine/wtf/Forward.h" |
| 41 #include "sky/engine/wtf/HashMap.h" | 40 #include "sky/engine/wtf/HashMap.h" |
| 42 #include "sky/engine/wtf/HashTraits.h" | 41 #include "sky/engine/wtf/HashTraits.h" |
| 43 #include "sky/engine/wtf/RefPtr.h" | 42 #include "sky/engine/wtf/RefPtr.h" |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| 47 class AutoscrollController; | 46 class AutoscrollController; |
| 48 class Document; | 47 class Document; |
| 49 class Element; | 48 class Element; |
| 50 class Event; | 49 class Event; |
| 51 class EventTarget; | 50 class EventTarget; |
| 52 template <typename EventType> | |
| 53 class EventWithHitTestResults; | |
| 54 class FloatPoint; | 51 class FloatPoint; |
| 55 class FloatQuad; | 52 class FloatQuad; |
| 56 class HitTestRequest; | 53 class HitTestRequest; |
| 57 class HitTestResult; | 54 class HitTestResult; |
| 58 class KeyboardEvent; | 55 class KeyboardEvent; |
| 59 class LocalFrame; | 56 class LocalFrame; |
| 60 class Node; | 57 class Node; |
| 61 class OptionalCursor; | 58 class OptionalCursor; |
| 62 class RenderLayer; | 59 class RenderLayer; |
| 63 class RenderLayerScrollableArea; | 60 class RenderLayerScrollableArea; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 bool m_didStartDrag; | 169 bool m_didStartDrag; |
| 173 | 170 |
| 174 Timer<EventHandler> m_activeIntervalTimer; | 171 Timer<EventHandler> m_activeIntervalTimer; |
| 175 double m_lastShowPressTimestamp; | 172 double m_lastShowPressTimestamp; |
| 176 RefPtr<Element> m_lastDeferredTapElement; | 173 RefPtr<Element> m_lastDeferredTapElement; |
| 177 }; | 174 }; |
| 178 | 175 |
| 179 } // namespace blink | 176 } // namespace blink |
| 180 | 177 |
| 181 #endif // SKY_ENGINE_CORE_PAGE_EVENTHANDLER_H_ | 178 #endif // SKY_ENGINE_CORE_PAGE_EVENTHANDLER_H_ |
| OLD | NEW |