| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 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 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 * | 24 * |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef TextEvent_h | 27 #ifndef TextEvent_h |
| 28 #define TextEvent_h | 28 #define TextEvent_h |
| 29 | 29 |
| 30 #include "core/events/TextEventInputType.h" | 30 #include "core/events/TextEventInputType.h" |
| 31 #include "core/events/ThreadLocalEventNames.h" | |
| 32 #include "core/events/UIEvent.h" | 31 #include "core/events/UIEvent.h" |
| 33 | 32 |
| 34 namespace WebCore { | 33 namespace WebCore { |
| 35 | 34 |
| 36 class DocumentFragment; | 35 class DocumentFragment; |
| 37 | 36 |
| 38 class TextEvent FINAL : public UIEvent { | 37 class TextEvent FINAL : public UIEvent { |
| 39 public: | 38 public: |
| 40 | 39 |
| 41 static PassRefPtr<TextEvent> create(); | 40 static PassRefPtr<TextEvent> create(); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 inline bool isTextEvent(const Event& event) | 80 inline bool isTextEvent(const Event& event) |
| 82 { | 81 { |
| 83 return event.type() == EventTypeNames::textInput && event.hasInterface(Event
Names::TextEvent); | 82 return event.type() == EventTypeNames::textInput && event.hasInterface(Event
Names::TextEvent); |
| 84 } | 83 } |
| 85 | 84 |
| 86 DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(even
t)); | 85 DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(even
t)); |
| 87 | 86 |
| 88 } // namespace WebCore | 87 } // namespace WebCore |
| 89 | 88 |
| 90 #endif // TextEvent_h | 89 #endif // TextEvent_h |
| OLD | NEW |