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

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: test expected update for http/tests/dom/crash-on-querying-event-path.html 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..5a2e88c94dd9cd226baba380a748f3ca240e24ea 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;
+ WillBeHeapVector<RefPtrWillBeRawPtr<EventTarget>> path() const;
bool isBeingDispatched() const { return eventPhase(); }

Powered by Google App Engine
This is Rietveld 408576698