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

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: 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.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;

Powered by Google App Engine
This is Rietveld 408576698