Chromium Code Reviews| 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 reserv ed. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 | 111 |
| 112 const AtomicString& type() const { return m_type; } | 112 const AtomicString& type() const { return m_type; } |
| 113 void setType(const AtomicString& type) { m_type = type; } | 113 void setType(const AtomicString& type) { m_type = type; } |
| 114 | 114 |
| 115 EventTarget* target() const { return m_target.get(); } | 115 EventTarget* target() const { return m_target.get(); } |
| 116 void setTarget(EventTarget*); | 116 void setTarget(EventTarget*); |
| 117 | 117 |
| 118 EventTarget* currentTarget() const; | 118 EventTarget* currentTarget() const; |
| 119 void setCurrentTarget(EventTarget* currentTarget) { m_currentTarget = curren tTarget; } | 119 void setCurrentTarget(EventTarget* currentTarget) { m_currentTarget = curren tTarget; } |
| 120 | 120 |
| 121 virtual void doneDispatchedEventAtCurrentTarget(); | |
|
tdresser
2016/05/17 14:56:54
doneDispatchingEventAtCurrentTarget
dtapuska
2016/05/17 20:50:13
Done.
| |
| 122 | |
| 121 unsigned short eventPhase() const { return m_eventPhase; } | 123 unsigned short eventPhase() const { return m_eventPhase; } |
| 122 void setEventPhase(unsigned short eventPhase) { m_eventPhase = eventPhase; } | 124 void setEventPhase(unsigned short eventPhase) { m_eventPhase = eventPhase; } |
| 123 | 125 |
| 124 bool bubbles() const { return m_canBubble; } | 126 bool bubbles() const { return m_canBubble; } |
| 125 bool cancelable() const { return m_cancelable; } | 127 bool cancelable() const { return m_cancelable; } |
| 126 bool scoped() const { return m_scoped; } | 128 bool scoped() const { return m_scoped; } |
| 127 bool relatedTargetScoped() const { return m_relatedTargetScoped; } | 129 bool relatedTargetScoped() const { return m_relatedTargetScoped; } |
| 128 | 130 |
| 129 // Event creation timestamp in milliseconds. If |HiResEventTimeStamp| | 131 // Event creation timestamp in milliseconds. If |HiResEventTimeStamp| |
| 130 // runtime feature is enabled it returns a DOMHighResTimeStamp using the | 132 // runtime feature is enabled it returns a DOMHighResTimeStamp using the |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 255 // WebInputEvent instance. | 257 // WebInputEvent instance. |
| 256 double m_platformTimeStamp; | 258 double m_platformTimeStamp; |
| 257 }; | 259 }; |
| 258 | 260 |
| 259 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ | 261 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ |
| 260 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t ypeName()) | 262 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t ypeName()) |
| 261 | 263 |
| 262 } // namespace blink | 264 } // namespace blink |
| 263 | 265 |
| 264 #endif // Event_h | 266 #endif // Event_h |
| OLD | NEW |