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

Unified Diff: Source/core/events/FocusEvent.cpp

Issue 316443004: Oilpan: Remove ref counting from EventTarget and all uses of Pass/RefPtr<EventTarget>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/events/FocusEvent.cpp
diff --git a/Source/core/events/FocusEvent.cpp b/Source/core/events/FocusEvent.cpp
index 04c62472fe8bf3c6dd8b04311ed0540884a24def..318b38559964baf31b33859320744c643b416054 100644
--- a/Source/core/events/FocusEvent.cpp
+++ b/Source/core/events/FocusEvent.cpp
@@ -67,6 +67,7 @@ FocusEvent::FocusEvent(const AtomicString& type, const FocusEventInit& initializ
void FocusEvent::trace(Visitor* visitor)
{
+ visitor->trace(m_relatedTarget);
UIEvent::trace(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698