Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Side by Side Diff: third_party/WebKit/Source/core/events/Event.h

Issue 1949563002: Retarget mouse event if the target is removed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Applying comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 178
179 bool defaultHandled() const { return m_defaultHandled; } 179 bool defaultHandled() const { return m_defaultHandled; }
180 void setDefaultHandled() { m_defaultHandled = true; } 180 void setDefaultHandled() { m_defaultHandled = true; }
181 181
182 bool cancelBubble() const { return m_cancelBubble; } 182 bool cancelBubble() const { return m_cancelBubble; }
183 void setCancelBubble(bool cancel) { m_cancelBubble = cancel; } 183 void setCancelBubble(bool cancel) { m_cancelBubble = cancel; }
184 184
185 Event* underlyingEvent() const { return m_underlyingEvent.get(); } 185 Event* underlyingEvent() const { return m_underlyingEvent.get(); }
186 void setUnderlyingEvent(Event*); 186 void setUnderlyingEvent(Event*);
187 187
188 bool hasEventPath() { return m_eventPath; }
188 EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; } 189 EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; }
189 void initEventPath(Node&); 190 void initEventPath(Node&);
190 191
191 HeapVector<Member<EventTarget>> path(ScriptState*) const; 192 HeapVector<Member<EventTarget>> path(ScriptState*) const;
192 HeapVector<Member<EventTarget>> deepPath(ScriptState*) const; 193 HeapVector<Member<EventTarget>> deepPath(ScriptState*) const;
193 194
194 bool isBeingDispatched() const { return eventPhase(); } 195 bool isBeingDispatched() const { return eventPhase(); }
195 196
196 // Events that must not leak across isolated world, similar to how 197 // Events that must not leak across isolated world, similar to how
197 // ErrorEvent behaves, can override this method. 198 // ErrorEvent behaves, can override this method.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 // WebInputEvent instance. 255 // WebInputEvent instance.
255 double m_platformTimeStamp; 256 double m_platformTimeStamp;
256 }; 257 };
257 258
258 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ 259 #define DEFINE_EVENT_TYPE_CASTS(typeName) \
259 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t ypeName()) 260 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t ypeName())
260 261
261 } // namespace blink 262 } // namespace blink
262 263
263 #endif // Event_h 264 #endif // Event_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698