Index: Source/core/xml/XMLHttpRequest.h |
diff --git a/Source/core/xml/XMLHttpRequest.h b/Source/core/xml/XMLHttpRequest.h |
index 38d945e9bbd724ab3faee5f5af2019e7a6695609..1aa1731b985519c1f7940477ac41c9ac084bfd8c 100644 |
--- a/Source/core/xml/XMLHttpRequest.h |
+++ b/Source/core/xml/XMLHttpRequest.h |
@@ -144,7 +144,7 @@ public: |
DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); |
- void trace(Visitor*) { } |
+ void trace(Visitor*); |
private: |
XMLHttpRequest(ExecutionContext*, PassRefPtr<SecurityOrigin>); |
@@ -222,8 +222,8 @@ private: |
bool m_async; |
bool m_includeCredentials; |
unsigned long m_timeoutMilliseconds; |
- RefPtr<Blob> m_responseBlob; |
- RefPtr<Stream> m_responseStream; |
+ RefPtrWillBeMember<Blob> m_responseBlob; |
+ RefPtrWillBeMember<Stream> m_responseStream; |
RefPtr<ThreadableLoader> m_loader; |
State m_state; |