| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
| 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "core/dom/DOMHighResTimeStamp.h" | 30 #include "core/dom/DOMHighResTimeStamp.h" |
| 31 #include "core/dom/DOMTimeStamp.h" | 31 #include "core/dom/DOMTimeStamp.h" |
| 32 #include "core/events/EventInit.h" | 32 #include "core/events/EventInit.h" |
| 33 #include "core/events/EventPath.h" | 33 #include "core/events/EventPath.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "wtf/text/AtomicString.h" | 35 #include "wtf/text/AtomicString.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class DOMWrapperWorld; | 39 class DOMWrapperWorld; |
| 40 class EventDispatchMediator; |
| 40 class EventTarget; | 41 class EventTarget; |
| 41 class ExecutionContext; | 42 class ExecutionContext; |
| 42 | 43 |
| 43 class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>, | 44 class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>, |
| 44 public ScriptWrappable { | 45 public ScriptWrappable { |
| 45 DEFINE_WRAPPERTYPEINFO(); | 46 DEFINE_WRAPPERTYPEINFO(); |
| 46 | 47 |
| 47 public: | 48 public: |
| 48 enum PhaseType { | 49 enum PhaseType { |
| 49 kNone = 0, | 50 kNone = 0, |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 double m_platformTimeStamp; | 306 double m_platformTimeStamp; |
| 306 }; | 307 }; |
| 307 | 308 |
| 308 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ | 309 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ |
| 309 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), \ | 310 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), \ |
| 310 event.is##typeName()) | 311 event.is##typeName()) |
| 311 | 312 |
| 312 } // namespace blink | 313 } // namespace blink |
| 313 | 314 |
| 314 #endif // Event_h | 315 #endif // Event_h |
| OLD | NEW |