Index: Source/core/xml/XMLHttpRequest.h |
diff --git a/Source/core/xml/XMLHttpRequest.h b/Source/core/xml/XMLHttpRequest.h |
index 4767d7664980514bd9538f753cd28fc44824bd2a..f97ae501416c7d15a727d6d7fe27ecddfc5cf2e6 100644 |
--- a/Source/core/xml/XMLHttpRequest.h |
+++ b/Source/core/xml/XMLHttpRequest.h |
@@ -181,7 +181,8 @@ private: |
void changeState(State newState); |
void callReadyStateChangeListener(); |
- void dropProtection(); |
+ void dropProtectionSoon(); |
+ void dropProtection(Timer<XMLHttpRequest>* = 0); |
void internalAbort(); |
void clearResponse(); |
void clearResponseBuffers(); |
@@ -243,7 +244,7 @@ private: |
// An enum corresponding to the allowed string values for the responseType attribute. |
ResponseTypeCode m_responseTypeCode; |
- |
+ Timer<XMLHttpRequest> m_protectionTimer; |
RefPtr<SecurityOrigin> m_securityOrigin; |
}; |