| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 // Not converted to ASCII lowercase. Must be lowered later or compared | 262 // Not converted to ASCII lowercase. Must be lowered later or compared |
| 263 // using case insensitive comparison functions if needed. | 263 // using case insensitive comparison functions if needed. |
| 264 AtomicString m_mimeTypeOverride; | 264 AtomicString m_mimeTypeOverride; |
| 265 unsigned long m_timeoutMilliseconds; | 265 unsigned long m_timeoutMilliseconds; |
| 266 PersistentWillBeMember<Blob> m_responseBlob; | 266 PersistentWillBeMember<Blob> m_responseBlob; |
| 267 PersistentWillBeMember<Stream> m_responseLegacyStream; | 267 PersistentWillBeMember<Stream> m_responseLegacyStream; |
| 268 PersistentWillBeMember<ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMA
rrayBufferView>>> m_responseStream; | 268 PersistentWillBeMember<ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMA
rrayBufferView>>> m_responseStream; |
| 269 PersistentWillBeMember<ReadableStreamSource> m_responseStreamSource; | 269 PersistentWillBeMember<ReadableStreamSource> m_responseStreamSource; |
| 270 | 270 |
| 271 RefPtr<ThreadableLoader> m_loader; | 271 RefPtr<ThreadableLoader> m_loader; |
| 272 unsigned long m_loaderIdentifier; | |
| 273 State m_state; | 272 State m_state; |
| 274 | 273 |
| 275 ResourceResponse m_response; | 274 ResourceResponse m_response; |
| 276 String m_finalResponseCharset; | 275 String m_finalResponseCharset; |
| 277 | 276 |
| 278 OwnPtr<TextResourceDecoder> m_decoder; | 277 OwnPtr<TextResourceDecoder> m_decoder; |
| 279 | 278 |
| 280 ScriptString m_responseText; | 279 ScriptString m_responseText; |
| 281 RefPtrWillBeMember<Document> m_responseDocument; | 280 RefPtrWillBeMember<Document> m_responseDocument; |
| 282 RefPtrWillBeMember<DocumentParser> m_responseDocumentParser; | 281 RefPtrWillBeMember<DocumentParser> m_responseDocumentParser; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 bool m_sameOriginRequest; | 319 bool m_sameOriginRequest; |
| 321 // True iff the ongoing resource loading is using the downloadToFile | 320 // True iff the ongoing resource loading is using the downloadToFile |
| 322 // option. | 321 // option. |
| 323 bool m_downloadingToFile; | 322 bool m_downloadingToFile; |
| 324 bool m_responseTextOverflow; | 323 bool m_responseTextOverflow; |
| 325 }; | 324 }; |
| 326 | 325 |
| 327 } // namespace blink | 326 } // namespace blink |
| 328 | 327 |
| 329 #endif // XMLHttpRequest_h | 328 #endif // XMLHttpRequest_h |
| OLD | NEW |