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

Unified Diff: Source/core/xml/XMLHttpRequest.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/xml/XMLHttpRequest.cpp
diff --git a/Source/core/xml/XMLHttpRequest.cpp b/Source/core/xml/XMLHttpRequest.cpp
index c5dc7ecd89f824d6864760a8b58c8f4ed9100648..1014f6fe2b755837178a3587a9adfff9339c29bb 100644
--- a/Source/core/xml/XMLHttpRequest.cpp
+++ b/Source/core/xml/XMLHttpRequest.cpp
@@ -1409,6 +1409,7 @@ ExecutionContext* XMLHttpRequest::executionContext() const
void XMLHttpRequest::trace(Visitor* visitor)
{
+ visitor->trace(m_upload);
haraken 2014/06/03 09:47:07 You're tracing twice :)
zerny-chromium 2014/06/03 10:11:05 Done.
visitor->trace(m_responseBlob);
visitor->trace(m_responseStream);
visitor->trace(m_responseDocument);

Powered by Google App Engine
This is Rietveld 408576698