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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 }; | 67 }; |
68 | 68 |
69 enum ResponseTypeCode { | 69 enum ResponseTypeCode { |
70 ResponseTypeDefault, | 70 ResponseTypeDefault, |
71 ResponseTypeText, | 71 ResponseTypeText, |
72 ResponseTypeDocument, | 72 ResponseTypeDocument, |
73 ResponseTypeBlob, | 73 ResponseTypeBlob, |
74 ResponseTypeArrayBuffer | 74 ResponseTypeArrayBuffer |
75 }; | 75 }; |
76 | 76 |
77 enum DropProtection { | |
78 DropProtectionSync, | |
79 DropProtectionAsync, | |
80 }; | |
81 | |
82 virtual void contextDestroyed(); | 77 virtual void contextDestroyed(); |
83 virtual void didTimeout(); | 78 virtual void didTimeout(); |
84 virtual bool canSuspend() const; | 79 virtual bool canSuspend() const; |
85 virtual void suspend(ReasonForSuspension); | 80 virtual void suspend(ReasonForSuspension); |
86 virtual void resume(); | 81 virtual void resume(); |
87 virtual void stop(); | 82 virtual void stop(); |
88 | 83 |
89 virtual const AtomicString& interfaceName() const; | 84 virtual const AtomicString& interfaceName() const; |
90 virtual ScriptExecutionContext* scriptExecutionContext() const; | 85 virtual ScriptExecutionContext* scriptExecutionContext() const; |
91 | 86 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 bool initSend(ExceptionState&); | 169 bool initSend(ExceptionState&); |
175 void sendBytesData(const void*, size_t, ExceptionState&); | 170 void sendBytesData(const void*, size_t, ExceptionState&); |
176 | 171 |
177 String getRequestHeader(const AtomicString& name) const; | 172 String getRequestHeader(const AtomicString& name) const; |
178 void setRequestHeaderInternal(const AtomicString& name, const String& value)
; | 173 void setRequestHeaderInternal(const AtomicString& name, const String& value)
; |
179 | 174 |
180 void changeState(State newState); | 175 void changeState(State newState); |
181 void callReadyStateChangeListener(); | 176 void callReadyStateChangeListener(); |
182 void dropProtectionSoon(); | 177 void dropProtectionSoon(); |
183 void dropProtection(Timer<XMLHttpRequest>* = 0); | 178 void dropProtection(Timer<XMLHttpRequest>* = 0); |
184 void internalAbort(DropProtection = DropProtectionSync); | 179 void internalAbort(); |
185 void clearResponse(); | 180 void clearResponse(); |
186 void clearResponseBuffers(); | 181 void clearResponseBuffers(); |
187 void clearRequest(); | 182 void clearRequest(); |
188 | 183 |
189 void createRequest(ExceptionState&); | 184 void createRequest(ExceptionState&); |
190 | 185 |
191 void genericError(); | 186 void genericError(); |
192 void networkError(); | 187 void networkError(); |
193 void abortError(); | 188 void abortError(); |
194 | 189 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 | 235 |
241 // An enum corresponding to the allowed string values for the responseType a
ttribute. | 236 // An enum corresponding to the allowed string values for the responseType a
ttribute. |
242 ResponseTypeCode m_responseTypeCode; | 237 ResponseTypeCode m_responseTypeCode; |
243 Timer<XMLHttpRequest> m_protectionTimer; | 238 Timer<XMLHttpRequest> m_protectionTimer; |
244 RefPtr<SecurityOrigin> m_securityOrigin; | 239 RefPtr<SecurityOrigin> m_securityOrigin; |
245 }; | 240 }; |
246 | 241 |
247 } // namespace WebCore | 242 } // namespace WebCore |
248 | 243 |
249 #endif // XMLHttpRequest_h | 244 #endif // XMLHttpRequest_h |
OLD | NEW |