| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com> | 3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com> |
| 4 * Copyright (C) 2011 Google Inc. All rights reserved. | 4 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 5 * Copyright (C) 2012 Intel Corporation | 5 * Copyright (C) 2012 Intel Corporation |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Lesser General Public | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 // notification is received from m_loader and thrown at the end of send() if | 241 // notification is received from m_loader and thrown at the end of send() if |
| 242 // any. | 242 // any. |
| 243 ExceptionCode m_exceptionCode; | 243 ExceptionCode m_exceptionCode; |
| 244 | 244 |
| 245 XMLHttpRequestProgressEventThrottle m_progressEventThrottle; | 245 XMLHttpRequestProgressEventThrottle m_progressEventThrottle; |
| 246 | 246 |
| 247 // An enum corresponding to the allowed string values for the responseType a
ttribute. | 247 // An enum corresponding to the allowed string values for the responseType a
ttribute. |
| 248 ResponseTypeCode m_responseTypeCode; | 248 ResponseTypeCode m_responseTypeCode; |
| 249 RefPtr<SecurityOrigin> m_securityOrigin; | 249 RefPtr<SecurityOrigin> m_securityOrigin; |
| 250 | 250 |
| 251 double m_previousReadyStateChangeFireTime; |
| 252 |
| 251 bool m_async; | 253 bool m_async; |
| 252 bool m_includeCredentials; | 254 bool m_includeCredentials; |
| 253 // Used to skip m_responseDocument creation if it's done previously. We need | 255 // Used to skip m_responseDocument creation if it's done previously. We need |
| 254 // this separate flag since m_responseDocument can be 0 for some cases. | 256 // this separate flag since m_responseDocument can be 0 for some cases. |
| 255 bool m_createdDocument; | 257 bool m_createdDocument; |
| 256 bool m_error; | 258 bool m_error; |
| 257 bool m_uploadEventsAllowed; | 259 bool m_uploadEventsAllowed; |
| 258 bool m_uploadComplete; | 260 bool m_uploadComplete; |
| 259 bool m_sameOriginRequest; | 261 bool m_sameOriginRequest; |
| 260 }; | 262 }; |
| 261 | 263 |
| 262 } // namespace blink | 264 } // namespace blink |
| 263 | 265 |
| 264 #endif // XMLHttpRequest_h | 266 #endif // XMLHttpRequest_h |
| OLD | NEW |