Chromium Code Reviews| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 216 OwnPtr<XMLHttpRequestUpload> m_upload; | 216 OwnPtr<XMLHttpRequestUpload> m_upload; |
| 217 | 217 |
| 218 KURL m_url; | 218 KURL m_url; |
| 219 AtomicString m_method; | 219 AtomicString m_method; |
| 220 HTTPHeaderMap m_requestHeaders; | 220 HTTPHeaderMap m_requestHeaders; |
| 221 RefPtr<FormData> m_requestEntityBody; | 221 RefPtr<FormData> m_requestEntityBody; |
| 222 AtomicString m_mimeTypeOverride; | 222 AtomicString m_mimeTypeOverride; |
| 223 bool m_async; | 223 bool m_async; |
| 224 bool m_includeCredentials; | 224 bool m_includeCredentials; |
| 225 unsigned long m_timeoutMilliseconds; | 225 unsigned long m_timeoutMilliseconds; |
| 226 RefPtr<Blob> m_responseBlob; | 226 RefPtrWillBePersistent<Blob> m_responseBlob; |
| 227 RefPtr<Stream> m_responseStream; | 227 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
| |
| 228 | 228 |
| 229 RefPtr<ThreadableLoader> m_loader; | 229 RefPtr<ThreadableLoader> m_loader; |
| 230 State m_state; | 230 State m_state; |
| 231 | 231 |
| 232 ResourceResponse m_response; | 232 ResourceResponse m_response; |
| 233 String m_responseEncoding; | 233 String m_responseEncoding; |
| 234 | 234 |
| 235 OwnPtr<TextResourceDecoder> m_decoder; | 235 OwnPtr<TextResourceDecoder> m_decoder; |
| 236 | 236 |
| 237 ScriptString m_responseText; | 237 ScriptString m_responseText; |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 265 | 265 |
| 266 // An enum corresponding to the allowed string values for the responseType a ttribute. | 266 // An enum corresponding to the allowed string values for the responseType a ttribute. |
| 267 ResponseTypeCode m_responseTypeCode; | 267 ResponseTypeCode m_responseTypeCode; |
| 268 AsyncMethodRunner<XMLHttpRequest> m_dropProtectionRunner; | 268 AsyncMethodRunner<XMLHttpRequest> m_dropProtectionRunner; |
| 269 RefPtr<SecurityOrigin> m_securityOrigin; | 269 RefPtr<SecurityOrigin> m_securityOrigin; |
| 270 }; | 270 }; |
| 271 | 271 |
| 272 } // namespace WebCore | 272 } // namespace WebCore |
| 273 | 273 |
| 274 #endif // XMLHttpRequest_h | 274 #endif // XMLHttpRequest_h |
| OLD | NEW |