| 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 "CachedResourceRequestInitiators.h" | |
| 28 #include "ContentSecurityPolicy.h" | 27 #include "ContentSecurityPolicy.h" |
| 29 #include "ContextFeatures.h" | 28 #include "ContextFeatures.h" |
| 30 #include "DOMFormData.h" | 29 #include "DOMFormData.h" |
| 31 #include "DOMImplementation.h" | 30 #include "DOMImplementation.h" |
| 32 #include "Event.h" | 31 #include "Event.h" |
| 33 #include "EventException.h" | 32 #include "EventException.h" |
| 34 #include "EventListener.h" | 33 #include "EventListener.h" |
| 35 #include "EventNames.h" | 34 #include "EventNames.h" |
| 36 #include "ExceptionCode.h" | 35 #include "ExceptionCode.h" |
| 37 #include "File.h" | 36 #include "File.h" |
| 38 #include "HTMLDocument.h" | 37 #include "HTMLDocument.h" |
| 39 #include "InspectorInstrumentation.h" | 38 #include "InspectorInstrumentation.h" |
| 40 #include "MemoryCache.h" | |
| 41 #include "ScriptCallStack.h" | 39 #include "ScriptCallStack.h" |
| 42 #include "ScriptController.h" | 40 #include "ScriptController.h" |
| 43 #include "ScriptProfile.h" | 41 #include "ScriptProfile.h" |
| 44 #include "SecurityOrigin.h" | 42 #include "SecurityOrigin.h" |
| 45 #include "Settings.h" | 43 #include "Settings.h" |
| 46 #include "WebCoreMemoryInstrumentation.h" | 44 #include "WebCoreMemoryInstrumentation.h" |
| 47 #include "XMLHttpRequestException.h" | 45 #include "XMLHttpRequestException.h" |
| 48 #include "XMLHttpRequestProgressEvent.h" | 46 #include "XMLHttpRequestProgressEvent.h" |
| 49 #include "XMLHttpRequestUpload.h" | 47 #include "XMLHttpRequestUpload.h" |
| 50 #include "core/loader/CrossOriginAccessControl.h" | 48 #include "core/loader/CrossOriginAccessControl.h" |
| 51 #include "core/loader/TextResourceDecoder.h" | 49 #include "core/loader/TextResourceDecoder.h" |
| 52 #include "core/loader/ThreadableLoader.h" | 50 #include "core/loader/ThreadableLoader.h" |
| 51 #include "core/loader/cache/CachedResourceRequestInitiators.h" |
| 52 #include "core/loader/cache/MemoryCache.h" |
| 53 #include "core/platform/HistogramSupport.h" | 53 #include "core/platform/HistogramSupport.h" |
| 54 #include "core/platform/SharedBuffer.h" | 54 #include "core/platform/SharedBuffer.h" |
| 55 #include "core/platform/network/BlobData.h" | 55 #include "core/platform/network/BlobData.h" |
| 56 #include "core/platform/network/HTTPParsers.h" | 56 #include "core/platform/network/HTTPParsers.h" |
| 57 #include "core/platform/network/ParsedContentType.h" | 57 #include "core/platform/network/ParsedContentType.h" |
| 58 #include "core/platform/network/ResourceError.h" | 58 #include "core/platform/network/ResourceError.h" |
| 59 #include "core/platform/network/ResourceRequest.h" | 59 #include "core/platform/network/ResourceRequest.h" |
| 60 #include "markup.h" | 60 #include "markup.h" |
| 61 #include <wtf/ArrayBuffer.h> | 61 #include <wtf/ArrayBuffer.h> |
| 62 #include <wtf/ArrayBufferView.h> | 62 #include <wtf/ArrayBufferView.h> |
| (...skipping 1227 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 |