Index: Source/core/xml/XMLHttpRequest.h |
diff --git a/Source/core/xml/XMLHttpRequest.h b/Source/core/xml/XMLHttpRequest.h |
index b6dac2482efdbd82b66eeb95083fb15a2a97f087..0ed9e5f279fc0507bad1ddcc8145525a812948d1 100644 |
--- a/Source/core/xml/XMLHttpRequest.h |
+++ b/Source/core/xml/XMLHttpRequest.h |
@@ -223,8 +223,8 @@ private: |
bool m_async; |
bool m_includeCredentials; |
unsigned long m_timeoutMilliseconds; |
- RefPtr<Blob> m_responseBlob; |
- RefPtr<Stream> m_responseStream; |
+ RefPtrWillBePersistent<Blob> m_responseBlob; |
+ RefPtrWillBePersistent<Stream> m_responseStream; |
haraken
2014/02/24 13:49:14
XMLHttpRequest is already on the heap. Thus these
sof
2014/02/24 17:09:09
Oh, right - change here was started before that la
|
RefPtr<ThreadableLoader> m_loader; |
State m_state; |