| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/input/ScrollManager.h" | 35 #include "core/input/ScrollManager.h" |
| 36 #include "core/layout/HitTestRequest.h" | 36 #include "core/layout/HitTestRequest.h" |
| 37 #include "core/page/DragActions.h" | 37 #include "core/page/DragActions.h" |
| 38 #include "core/page/EventWithHitTestResults.h" | 38 #include "core/page/EventWithHitTestResults.h" |
| 39 #include "core/style/ComputedStyleConstants.h" | 39 #include "core/style/ComputedStyleConstants.h" |
| 40 #include "platform/Cursor.h" | 40 #include "platform/Cursor.h" |
| 41 #include "platform/UserGestureIndicator.h" | 41 #include "platform/UserGestureIndicator.h" |
| 42 #include "platform/geometry/LayoutPoint.h" | 42 #include "platform/geometry/LayoutPoint.h" |
| 43 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
| 44 #include "platform/scroll/ScrollTypes.h" | 44 #include "platform/scroll/ScrollTypes.h" |
| 45 #include "platform/wtf/Forward.h" |
| 46 #include "platform/wtf/HashMap.h" |
| 47 #include "platform/wtf/HashTraits.h" |
| 48 #include "platform/wtf/RefPtr.h" |
| 45 #include "public/platform/WebInputEvent.h" | 49 #include "public/platform/WebInputEvent.h" |
| 46 #include "public/platform/WebInputEventResult.h" | 50 #include "public/platform/WebInputEventResult.h" |
| 47 #include "wtf/Forward.h" | |
| 48 #include "wtf/HashMap.h" | |
| 49 #include "wtf/HashTraits.h" | |
| 50 #include "wtf/RefPtr.h" | |
| 51 | 51 |
| 52 namespace blink { | 52 namespace blink { |
| 53 | 53 |
| 54 class DataTransfer; | 54 class DataTransfer; |
| 55 class PaintLayer; | 55 class PaintLayer; |
| 56 class Element; | 56 class Element; |
| 57 class Event; | 57 class Event; |
| 58 class EventTarget; | 58 class EventTarget; |
| 59 template <typename EventType> | 59 template <typename EventType> |
| 60 class EventWithHitTestResults; | 60 class EventWithHitTestResults; |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 | 382 |
| 383 // Set on GestureTapDown if the |pointerdown| event corresponding to the | 383 // Set on GestureTapDown if the |pointerdown| event corresponding to the |
| 384 // triggering |touchstart| event was canceled. This suppresses mouse event | 384 // triggering |touchstart| event was canceled. This suppresses mouse event |
| 385 // firing for the current gesture sequence (i.e. until next GestureTapDown). | 385 // firing for the current gesture sequence (i.e. until next GestureTapDown). |
| 386 bool suppress_mouse_events_from_gestures_; | 386 bool suppress_mouse_events_from_gestures_; |
| 387 }; | 387 }; |
| 388 | 388 |
| 389 } // namespace blink | 389 } // namespace blink |
| 390 | 390 |
| 391 #endif // EventHandler_h | 391 #endif // EventHandler_h |
| OLD | NEW |