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

Unified Diff: Source/core/xml/XMLHttpRequest.cpp

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased + add missing USED_FROM_MULTIPLE_THREADS(Event) Created 6 years, 10 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 6bbe486964a9e3d06141f72dbd0cc560f830f8a6..7357772b30f2d7b0e1920e6ba55ceee171e9daba 100644
--- a/Source/core/xml/XMLHttpRequest.cpp
+++ b/Source/core/xml/XMLHttpRequest.cpp
@@ -1427,4 +1427,10 @@ ExecutionContext* XMLHttpRequest::executionContext() const
return ActiveDOMObject::executionContext();
}
+void XMLHttpRequest::trace(Visitor* visitor)
+{
+ visitor->trace(m_responseBlob);
+ visitor->trace(m_responseStream);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698