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

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

Issue 1200413004: Oilpan: make XHR progress event throttling finalization safe. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Move XMLHttpRequestProgressEventThrottle to the heap instead Created 5 years, 6 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 | « no previous file | Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xmlhttprequest/XMLHttpRequest.h
diff --git a/Source/core/xmlhttprequest/XMLHttpRequest.h b/Source/core/xmlhttprequest/XMLHttpRequest.h
index 074be041e076c3cf57d7cab0d08f040150066bda..06a68af784f825551572638799961f2c13a2b2ec 100644
--- a/Source/core/xmlhttprequest/XMLHttpRequest.h
+++ b/Source/core/xmlhttprequest/XMLHttpRequest.h
@@ -254,6 +254,8 @@ private:
void handleRequestError(ExceptionCode, const AtomicString&, long long, long long);
+ XMLHttpRequestProgressEventThrottle& progressEventThrottle();
+
OwnPtrWillBeMember<XMLHttpRequestUpload> m_upload;
KURL m_url;
@@ -293,7 +295,7 @@ private:
// any.
ExceptionCode m_exceptionCode;
- XMLHttpRequestProgressEventThrottle m_progressEventThrottle;
+ OwnPtrWillBeMember<XMLHttpRequestProgressEventThrottle> m_progressEventThrottle;
// An enum corresponding to the allowed string values for the responseType attribute.
ResponseTypeCode m_responseTypeCode;
« no previous file with comments | « no previous file | Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698