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

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

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased 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
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698