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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp

Issue 2448193005: [wrapper-tracing] XMLHttpRequest: Add write barriers (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
index 9e6bb4c5f8a9b3dbd7f19301df7b6165b0252468..dbe4f19fddce269a3b6051c85df6b6d74759b7e8 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
@@ -227,8 +227,12 @@ XMLHttpRequest::XMLHttpRequest(
: ActiveScriptWrappable(this),
ActiveDOMObject(context),
m_timeoutMilliseconds(0),
+ m_responseBlob(this, nullptr),
+ m_responseLegacyStream(this, nullptr),
m_state(kUnsent),
+ m_responseDocument(this, nullptr),
m_lengthDownloadedToFile(0),
+ m_responseArrayBuffer(this, nullptr),
m_receivedLength(0),
m_exceptionCode(0),
m_progressEventThrottle(
« no previous file with comments | « third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698