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

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

Issue 2014173002: Rename Event.deepPath() to Event.composedPath() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert devtools.js Created 4 years, 6 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 void setCancelBubble(ExecutionContext*, bool); 189 void setCancelBubble(ExecutionContext*, bool);
190 190
191 Event* underlyingEvent() const { return m_underlyingEvent.get(); } 191 Event* underlyingEvent() const { return m_underlyingEvent.get(); }
192 void setUnderlyingEvent(Event*); 192 void setUnderlyingEvent(Event*);
193 193
194 bool hasEventPath() { return m_eventPath; } 194 bool hasEventPath() { return m_eventPath; }
195 EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; } 195 EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; }
196 void initEventPath(Node&); 196 void initEventPath(Node&);
197 197
198 HeapVector<Member<EventTarget>> path(ScriptState*) const; 198 HeapVector<Member<EventTarget>> path(ScriptState*) const;
199 HeapVector<Member<EventTarget>> deepPath(ScriptState*) const; 199 HeapVector<Member<EventTarget>> composedPath(ScriptState*) const;
200 200
201 bool isBeingDispatched() const { return eventPhase(); } 201 bool isBeingDispatched() const { return eventPhase(); }
202 202
203 // Events that must not leak across isolated world, similar to how 203 // Events that must not leak across isolated world, similar to how
204 // ErrorEvent behaves, can override this method. 204 // ErrorEvent behaves, can override this method.
205 virtual bool canBeDispatchedInWorld(const DOMWrapperWorld&) const { return t rue; } 205 virtual bool canBeDispatchedInWorld(const DOMWrapperWorld&) const { return t rue; }
206 206
207 virtual EventDispatchMediator* createMediator(); 207 virtual EventDispatchMediator* createMediator();
208 208
209 bool isTrusted() const { return m_isTrusted; } 209 bool isTrusted() const { return m_isTrusted; }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 // WebInputEvent instance. 261 // WebInputEvent instance.
262 double m_platformTimeStamp; 262 double m_platformTimeStamp;
263 }; 263 };
264 264
265 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ 265 #define DEFINE_EVENT_TYPE_CASTS(typeName) \
266 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t ypeName()) 266 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t ypeName())
267 267
268 } // namespace blink 268 } // namespace blink
269 269
270 #endif // Event_h 270 #endif // Event_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698