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. |
11 * | 11 * |
12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Lesser General Public License for more details. | 15 * Lesser General Public License for more details. |
16 * | 16 * |
17 * You should have received a copy of the GNU Lesser General Public | 17 * You should have received a copy of the GNU Lesser General Public |
18 * License along with this library; if not, write to the Free Software | 18 * License along with this library; if not, write to the Free Software |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
20 * MA 02110-1301 USA | 20 * MA 02110-1301 USA |
21 */ | 21 */ |
22 | 22 |
23 #ifndef XMLHttpRequest_h | 23 #ifndef XMLHttpRequest_h |
24 #define XMLHttpRequest_h | 24 #define XMLHttpRequest_h |
25 | 25 |
26 #include <memory> | 26 #include <memory> |
27 #include "bindings/core/v8/ActiveScriptWrappable.h" | |
28 #include "bindings/core/v8/ScriptString.h" | 27 #include "bindings/core/v8/ScriptString.h" |
29 #include "bindings/core/v8/ScriptWrappable.h" | 28 #include "bindings/core/v8/ScriptWrappable.h" |
30 #include "bindings/core/v8/TraceWrapperMember.h" | 29 #include "bindings/core/v8/TraceWrapperMember.h" |
31 #include "core/dom/DocumentParserClient.h" | 30 #include "core/dom/DocumentParserClient.h" |
32 #include "core/dom/ExceptionCode.h" | 31 #include "core/dom/ExceptionCode.h" |
33 #include "core/dom/SuspendableObject.h" | 32 #include "core/dom/SuspendableObject.h" |
34 #include "core/loader/ThreadableLoaderClient.h" | 33 #include "core/loader/ThreadableLoaderClient.h" |
35 #include "core/xmlhttprequest/XMLHttpRequestEventTarget.h" | 34 #include "core/xmlhttprequest/XMLHttpRequestEventTarget.h" |
36 #include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h" | 35 #include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h" |
| 36 #include "platform/bindings/ActiveScriptWrappable.h" |
37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
38 #include "platform/loader/fetch/ResourceResponse.h" | 38 #include "platform/loader/fetch/ResourceResponse.h" |
39 #include "platform/network/EncodedFormData.h" | 39 #include "platform/network/EncodedFormData.h" |
40 #include "platform/network/HTTPHeaderMap.h" | 40 #include "platform/network/HTTPHeaderMap.h" |
41 #include "platform/weborigin/KURL.h" | 41 #include "platform/weborigin/KURL.h" |
42 #include "platform/weborigin/SecurityOrigin.h" | 42 #include "platform/weborigin/SecurityOrigin.h" |
43 #include "platform/wtf/Forward.h" | 43 #include "platform/wtf/Forward.h" |
44 #include "platform/wtf/PassRefPtr.h" | 44 #include "platform/wtf/PassRefPtr.h" |
45 #include "platform/wtf/RefPtr.h" | 45 #include "platform/wtf/RefPtr.h" |
46 #include "platform/wtf/text/AtomicString.h" | 46 #include "platform/wtf/text/AtomicString.h" |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 bool response_text_overflow_; | 356 bool response_text_overflow_; |
357 bool send_flag_; | 357 bool send_flag_; |
358 bool response_array_buffer_failure_; | 358 bool response_array_buffer_failure_; |
359 }; | 359 }; |
360 | 360 |
361 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); | 361 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); |
362 | 362 |
363 } // namespace blink | 363 } // namespace blink |
364 | 364 |
365 #endif // XMLHttpRequest_h | 365 #endif // XMLHttpRequest_h |
OLD | NEW |