| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 void setTimeout(unsigned timeout, ExceptionState&); | 133 void setTimeout(unsigned timeout, ExceptionState&); |
| 134 ResponseTypeCode getResponseTypeCode() const { return m_responseTypeCode; } | 134 ResponseTypeCode getResponseTypeCode() const { return m_responseTypeCode; } |
| 135 String responseType(); | 135 String responseType(); |
| 136 void setResponseType(const String&, ExceptionState&); | 136 void setResponseType(const String&, ExceptionState&); |
| 137 String responseURL(); | 137 String responseURL(); |
| 138 | 138 |
| 139 // For Inspector. | 139 // For Inspector. |
| 140 void sendForInspectorXHRReplay(PassRefPtr<EncodedFormData>, ExceptionState&)
; | 140 void sendForInspectorXHRReplay(PassRefPtr<EncodedFormData>, ExceptionState&)
; |
| 141 | 141 |
| 142 XMLHttpRequestUpload* upload(); | 142 XMLHttpRequestUpload* upload(); |
| 143 bool isAsync() { return m_async; } |
| 143 | 144 |
| 144 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); | 145 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); |
| 145 | 146 |
| 146 // (Also) eagerly finalized so as to prevent access to the eagerly finalized | 147 // (Also) eagerly finalized so as to prevent access to the eagerly finalized |
| 147 // progress event throttle. | 148 // progress event throttle. |
| 148 EAGERLY_FINALIZE(); | 149 EAGERLY_FINALIZE(); |
| 149 #if !ENABLE(OILPAN) | 150 #if !ENABLE(OILPAN) |
| 150 DECLARE_EAGER_FINALIZATION_OPERATOR_NEW(); | 151 DECLARE_EAGER_FINALIZATION_OPERATOR_NEW(); |
| 151 #endif | 152 #endif |
| 152 DECLARE_VIRTUAL_TRACE(); | 153 DECLARE_VIRTUAL_TRACE(); |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 bool m_sameOriginRequest; | 319 bool m_sameOriginRequest; |
| 319 // True iff the ongoing resource loading is using the downloadToFile | 320 // True iff the ongoing resource loading is using the downloadToFile |
| 320 // option. | 321 // option. |
| 321 bool m_downloadingToFile; | 322 bool m_downloadingToFile; |
| 322 bool m_responseTextOverflow; | 323 bool m_responseTextOverflow; |
| 323 }; | 324 }; |
| 324 | 325 |
| 325 } // namespace blink | 326 } // namespace blink |
| 326 | 327 |
| 327 #endif // XMLHttpRequest_h | 328 #endif // XMLHttpRequest_h |
| OLD | NEW |