| 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 |
| 11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
| 12 * | 12 * |
| 13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
| 17 * | 17 * |
| 18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
| 19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
| 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef Event_h | 25 #ifndef Event_h |
| 26 #define Event_h | 26 #define Event_h |
| 27 | 27 |
| 28 #include "bindings/core/v8/ScriptWrappable.h" | |
| 29 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 30 #include "core/dom/DOMHighResTimeStamp.h" | 29 #include "core/dom/DOMHighResTimeStamp.h" |
| 31 #include "core/dom/DOMTimeStamp.h" | 30 #include "core/dom/DOMTimeStamp.h" |
| 32 #include "core/events/EventInit.h" | 31 #include "core/events/EventInit.h" |
| 33 #include "core/events/EventPath.h" | 32 #include "core/events/EventPath.h" |
| 33 #include "platform/bindings/ScriptWrappable.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "platform/wtf/Time.h" | 35 #include "platform/wtf/Time.h" |
| 36 #include "platform/wtf/text/AtomicString.h" | 36 #include "platform/wtf/text/AtomicString.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class DOMWrapperWorld; | 40 class DOMWrapperWorld; |
| 41 class EventDispatchMediator; | 41 class EventDispatchMediator; |
| 42 class EventTarget; | 42 class EventTarget; |
| 43 class ScriptState; | 43 class ScriptState; |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 TimeTicks platform_time_stamp_; | 307 TimeTicks platform_time_stamp_; |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ | 310 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ |
| 311 DEFINE_TYPE_CASTS(typeName, Event, event, event->Is##typeName(), \ | 311 DEFINE_TYPE_CASTS(typeName, Event, event, event->Is##typeName(), \ |
| 312 event.Is##typeName()) | 312 event.Is##typeName()) |
| 313 | 313 |
| 314 } // namespace blink | 314 } // namespace blink |
| 315 | 315 |
| 316 #endif // Event_h | 316 #endif // Event_h |
| OLD | NEW |