OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2005-2007 Alexey Proskuryakov <ap@webkit.org> | 3 * Copyright (C) 2005-2007 Alexey Proskuryakov <ap@webkit.org> |
4 * Copyright (C) 2007, 2008 Julien Chaffraix <jchaffraix@webkit.org> | 4 * Copyright (C) 2007, 2008 Julien Chaffraix <jchaffraix@webkit.org> |
5 * Copyright (C) 2008, 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2008, 2011 Google Inc. All rights reserved. |
6 * Copyright (C) 2012 Intel Corporation | 6 * Copyright (C) 2012 Intel Corporation |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Lesser General Public | 9 * modify it under the terms of the GNU Lesser General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
12 * | 12 * |
13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 * Lesser General Public License for more details. | 16 * Lesser General Public License for more details. |
17 * | 17 * |
18 * You should have received a copy of the GNU Lesser General Public | 18 * You should have received a copy of the GNU Lesser General Public |
19 * License along with this library; if not, write to the Free Software | 19 * License along with this library; if not, write to the Free Software |
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U
SA | 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U
SA |
21 */ | 21 */ |
22 | 22 |
23 #include "config.h" | 23 #include "config.h" |
24 #include "XMLHttpRequest.h" | 24 #include "XMLHttpRequest.h" |
25 | 25 |
26 #include "Blob.h" | 26 #include "Blob.h" |
27 #include "ContextFeatures.h" | |
28 #include "DOMFormData.h" | 27 #include "DOMFormData.h" |
29 #include "DOMImplementation.h" | |
30 #include "Event.h" | |
31 #include "EventException.h" | |
32 #include "EventListener.h" | |
33 #include "EventNames.h" | |
34 #include "ExceptionCode.h" | |
35 #include "File.h" | 28 #include "File.h" |
36 #include "HTMLDocument.h" | 29 #include "HTMLDocument.h" |
37 #include "InspectorInstrumentation.h" | 30 #include "InspectorInstrumentation.h" |
38 #include "ScriptCallStack.h" | 31 #include "ScriptCallStack.h" |
39 #include "ScriptController.h" | 32 #include "ScriptController.h" |
40 #include "ScriptProfile.h" | 33 #include "ScriptProfile.h" |
41 #include "WebCoreMemoryInstrumentation.h" | |
42 #include "XMLHttpRequestException.h" | 34 #include "XMLHttpRequestException.h" |
43 #include "XMLHttpRequestProgressEvent.h" | 35 #include "XMLHttpRequestProgressEvent.h" |
44 #include "XMLHttpRequestUpload.h" | 36 #include "XMLHttpRequestUpload.h" |
| 37 #include "core/dom/ContextFeatures.h" |
| 38 #include "core/dom/DOMImplementation.h" |
| 39 #include "core/dom/Event.h" |
| 40 #include "core/dom/EventException.h" |
| 41 #include "core/dom/EventListener.h" |
| 42 #include "core/dom/EventNames.h" |
| 43 #include "core/dom/ExceptionCode.h" |
| 44 #include "core/dom/WebCoreMemoryInstrumentation.h" |
45 #include "core/editing/markup.h" | 45 #include "core/editing/markup.h" |
46 #include "core/loader/CrossOriginAccessControl.h" | 46 #include "core/loader/CrossOriginAccessControl.h" |
47 #include "core/loader/TextResourceDecoder.h" | 47 #include "core/loader/TextResourceDecoder.h" |
48 #include "core/loader/ThreadableLoader.h" | 48 #include "core/loader/ThreadableLoader.h" |
49 #include "core/loader/cache/CachedResourceRequestInitiators.h" | 49 #include "core/loader/cache/CachedResourceRequestInitiators.h" |
50 #include "core/loader/cache/MemoryCache.h" | 50 #include "core/loader/cache/MemoryCache.h" |
51 #include "core/page/ContentSecurityPolicy.h" | 51 #include "core/page/ContentSecurityPolicy.h" |
52 #include "core/page/SecurityOrigin.h" | 52 #include "core/page/SecurityOrigin.h" |
53 #include "core/page/Settings.h" | 53 #include "core/page/Settings.h" |
54 #include "core/platform/HistogramSupport.h" | 54 #include "core/platform/HistogramSupport.h" |
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1290 info.addMember(m_responseDocument, "responseDocument"); | 1290 info.addMember(m_responseDocument, "responseDocument"); |
1291 info.addMember(m_binaryResponseBuilder, "binaryResponseBuilder"); | 1291 info.addMember(m_binaryResponseBuilder, "binaryResponseBuilder"); |
1292 info.addMember(m_responseArrayBuffer, "responseArrayBuffer"); | 1292 info.addMember(m_responseArrayBuffer, "responseArrayBuffer"); |
1293 info.addMember(m_lastSendURL, "lastSendURL"); | 1293 info.addMember(m_lastSendURL, "lastSendURL"); |
1294 info.addMember(m_eventTargetData, "eventTargetData"); | 1294 info.addMember(m_eventTargetData, "eventTargetData"); |
1295 info.addMember(m_progressEventThrottle, "progressEventThrottle"); | 1295 info.addMember(m_progressEventThrottle, "progressEventThrottle"); |
1296 info.addMember(m_securityOrigin, "securityOrigin"); | 1296 info.addMember(m_securityOrigin, "securityOrigin"); |
1297 } | 1297 } |
1298 | 1298 |
1299 } // namespace WebCore | 1299 } // namespace WebCore |
OLD | NEW |