OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2008, The Android Open Source Project | 2 * Copyright 2008, The Android Open Source Project |
3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above copyright | 10 * * Redistributions in binary form must reproduce the above copyright |
(...skipping 16 matching lines...) Expand all Loading... |
27 #ifndef TouchEvent_h | 27 #ifndef TouchEvent_h |
28 #define TouchEvent_h | 28 #define TouchEvent_h |
29 | 29 |
30 #include "core/events/EventDispatchMediator.h" | 30 #include "core/events/EventDispatchMediator.h" |
31 #include "core/events/MouseRelatedEvent.h" | 31 #include "core/events/MouseRelatedEvent.h" |
32 #include "core/dom/TouchList.h" | 32 #include "core/dom/TouchList.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 class TouchEvent FINAL : public UIEventWithKeyState { | 36 class TouchEvent FINAL : public UIEventWithKeyState { |
| 37 DEFINE_WRAPPERTYPEINFO(); |
37 public: | 38 public: |
38 virtual ~TouchEvent(); | 39 virtual ~TouchEvent(); |
39 | 40 |
40 static PassRefPtrWillBeRawPtr<TouchEvent> create() | 41 static PassRefPtrWillBeRawPtr<TouchEvent> create() |
41 { | 42 { |
42 return adoptRefWillBeNoop(new TouchEvent); | 43 return adoptRefWillBeNoop(new TouchEvent); |
43 } | 44 } |
44 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, | 45 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, |
45 TouchList* targetTouches, TouchList* changedTouches, | 46 TouchList* targetTouches, TouchList* changedTouches, |
46 const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, | 47 const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 explicit TouchEventDispatchMediator(PassRefPtrWillBeRawPtr<TouchEvent>); | 93 explicit TouchEventDispatchMediator(PassRefPtrWillBeRawPtr<TouchEvent>); |
93 TouchEvent* event() const; | 94 TouchEvent* event() const; |
94 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; | 95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; |
95 }; | 96 }; |
96 | 97 |
97 DEFINE_EVENT_TYPE_CASTS(TouchEvent); | 98 DEFINE_EVENT_TYPE_CASTS(TouchEvent); |
98 | 99 |
99 } // namespace blink | 100 } // namespace blink |
100 | 101 |
101 #endif // TouchEvent_h | 102 #endif // TouchEvent_h |
OLD | NEW |