| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 ScriptString responseJSONSource(); | 117 ScriptString responseJSONSource(); |
| 118 Document* responseXML(ExceptionState&); | 118 Document* responseXML(ExceptionState&); |
| 119 Blob* responseBlob(); | 119 Blob* responseBlob(); |
| 120 Stream* responseStream(); | 120 Stream* responseStream(); |
| 121 unsigned long timeout() const { return m_timeoutMilliseconds; } | 121 unsigned long timeout() const { return m_timeoutMilliseconds; } |
| 122 void setTimeout(unsigned long timeout, ExceptionState&); | 122 void setTimeout(unsigned long timeout, ExceptionState&); |
| 123 | 123 |
| 124 void sendForInspectorXHRReplay(PassRefPtr<FormData>, ExceptionState&); | 124 void sendForInspectorXHRReplay(PassRefPtr<FormData>, ExceptionState&); |
| 125 | 125 |
| 126 // Expose HTTP validation methods for other untrusted requests. | 126 // Expose HTTP validation methods for other untrusted requests. |
| 127 static bool isAllowedHTTPMethod(const String&); | |
| 128 static AtomicString uppercaseKnownHTTPMethod(const AtomicString&); | 127 static AtomicString uppercaseKnownHTTPMethod(const AtomicString&); |
| 129 static bool isAllowedHTTPHeader(const String&); | |
| 130 | 128 |
| 131 void setResponseType(const String&, ExceptionState&); | 129 void setResponseType(const String&, ExceptionState&); |
| 132 String responseType(); | 130 String responseType(); |
| 133 ResponseTypeCode responseTypeCode() const { return m_responseTypeCode; } | 131 ResponseTypeCode responseTypeCode() const { return m_responseTypeCode; } |
| 134 | 132 |
| 135 String responseURL(); | 133 String responseURL(); |
| 136 | 134 |
| 137 // response attribute has custom getter. | 135 // response attribute has custom getter. |
| 138 ArrayBuffer* responseArrayBuffer(); | 136 ArrayBuffer* responseArrayBuffer(); |
| 139 | 137 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 bool m_createdDocument; | 255 bool m_createdDocument; |
| 258 bool m_error; | 256 bool m_error; |
| 259 bool m_uploadEventsAllowed; | 257 bool m_uploadEventsAllowed; |
| 260 bool m_uploadComplete; | 258 bool m_uploadComplete; |
| 261 bool m_sameOriginRequest; | 259 bool m_sameOriginRequest; |
| 262 }; | 260 }; |
| 263 | 261 |
| 264 } // namespace blink | 262 } // namespace blink |
| 265 | 263 |
| 266 #endif // XMLHttpRequest_h | 264 #endif // XMLHttpRequest_h |
| OLD | NEW |