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

Unified Diff: Source/core/events/Event.h

Issue 849783002: Event.path should include Window (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: IDL sequence<T> to T[] Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/events/Event.h
diff --git a/Source/core/events/Event.h b/Source/core/events/Event.h
index 37a81e0e5d6c3a39026dfa1718613211b3f972ba..d75bc505f7075486f468f9073108b4a424476c6f 100644
--- a/Source/core/events/Event.h
+++ b/Source/core/events/Event.h
@@ -179,7 +179,7 @@ public:
EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; }
void initEventPath(Node&);
- PassRefPtrWillBeRawPtr<StaticNodeList> path() const;
+ Vector<RefPtrWillBeRawPtr<EventTarget>> path() const;
hayato 2015/01/15 04:15:28 Should be WillBeHeapVector?
bool isBeingDispatched() const { return eventPhase(); }

Powered by Google App Engine
This is Rietveld 408576698