| 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 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "core/dom/DOMImplementation.h" | 34 #include "core/dom/DOMImplementation.h" |
| 35 #include "core/dom/DOMTypedArray.h" | 35 #include "core/dom/DOMTypedArray.h" |
| 36 #include "core/dom/DocumentInit.h" | 36 #include "core/dom/DocumentInit.h" |
| 37 #include "core/dom/DocumentParser.h" | 37 #include "core/dom/DocumentParser.h" |
| 38 #include "core/dom/ExceptionCode.h" | 38 #include "core/dom/ExceptionCode.h" |
| 39 #include "core/dom/ExecutionContext.h" | 39 #include "core/dom/ExecutionContext.h" |
| 40 #include "core/dom/XMLDocument.h" | 40 #include "core/dom/XMLDocument.h" |
| 41 #include "core/editing/serializers/Serialization.h" | 41 #include "core/editing/serializers/Serialization.h" |
| 42 #include "core/events/Event.h" | 42 #include "core/events/Event.h" |
| 43 #include "core/events/ProgressEvent.h" | 43 #include "core/events/ProgressEvent.h" |
| 44 #include "core/fetch/CrossOriginAccessControl.h" | |
| 45 #include "core/fetch/FetchInitiatorTypeNames.h" | |
| 46 #include "core/fetch/FetchUtils.h" | |
| 47 #include "core/fetch/ResourceLoaderOptions.h" | |
| 48 #include "core/fileapi/Blob.h" | 44 #include "core/fileapi/Blob.h" |
| 49 #include "core/fileapi/File.h" | 45 #include "core/fileapi/File.h" |
| 50 #include "core/fileapi/FileReaderLoader.h" | 46 #include "core/fileapi/FileReaderLoader.h" |
| 51 #include "core/fileapi/FileReaderLoaderClient.h" | 47 #include "core/fileapi/FileReaderLoaderClient.h" |
| 52 #include "core/frame/Deprecation.h" | 48 #include "core/frame/Deprecation.h" |
| 53 #include "core/frame/Settings.h" | 49 #include "core/frame/Settings.h" |
| 54 #include "core/frame/csp/ContentSecurityPolicy.h" | 50 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 55 #include "core/html/FormData.h" | 51 #include "core/html/FormData.h" |
| 56 #include "core/html/HTMLDocument.h" | 52 #include "core/html/HTMLDocument.h" |
| 57 #include "core/html/parser/TextResourceDecoder.h" | 53 #include "core/html/parser/TextResourceDecoder.h" |
| 58 #include "core/inspector/ConsoleMessage.h" | 54 #include "core/inspector/ConsoleMessage.h" |
| 59 #include "core/inspector/InspectorInstrumentation.h" | 55 #include "core/inspector/InspectorInstrumentation.h" |
| 60 #include "core/inspector/InspectorTraceEvents.h" | 56 #include "core/inspector/InspectorTraceEvents.h" |
| 61 #include "core/loader/ThreadableLoader.h" | 57 #include "core/loader/ThreadableLoader.h" |
| 62 #include "core/page/ChromeClient.h" | 58 #include "core/page/ChromeClient.h" |
| 63 #include "core/page/Page.h" | 59 #include "core/page/Page.h" |
| 64 #include "core/xmlhttprequest/XMLHttpRequestUpload.h" | 60 #include "core/xmlhttprequest/XMLHttpRequestUpload.h" |
| 65 #include "platform/FileMetadata.h" | 61 #include "platform/FileMetadata.h" |
| 66 #include "platform/HTTPNames.h" | 62 #include "platform/HTTPNames.h" |
| 67 #include "platform/Histogram.h" | 63 #include "platform/Histogram.h" |
| 68 #include "platform/RuntimeEnabledFeatures.h" | 64 #include "platform/RuntimeEnabledFeatures.h" |
| 69 #include "platform/SharedBuffer.h" | 65 #include "platform/SharedBuffer.h" |
| 70 #include "platform/blob/BlobData.h" | 66 #include "platform/blob/BlobData.h" |
| 67 #include "platform/loader/fetch/CrossOriginAccessControl.h" |
| 68 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" |
| 69 #include "platform/loader/fetch/FetchUtils.h" |
| 70 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 71 #include "platform/network/HTTPParsers.h" | 71 #include "platform/network/HTTPParsers.h" |
| 72 #include "platform/network/NetworkLog.h" | 72 #include "platform/network/NetworkLog.h" |
| 73 #include "platform/network/ParsedContentType.h" | 73 #include "platform/network/ParsedContentType.h" |
| 74 #include "platform/network/ResourceError.h" | 74 #include "platform/network/ResourceError.h" |
| 75 #include "platform/network/ResourceRequest.h" | 75 #include "platform/network/ResourceRequest.h" |
| 76 #include "platform/weborigin/SecurityOrigin.h" | 76 #include "platform/weborigin/SecurityOrigin.h" |
| 77 #include "platform/weborigin/SecurityPolicy.h" | 77 #include "platform/weborigin/SecurityPolicy.h" |
| 78 #include "platform/weborigin/Suborigin.h" | 78 #include "platform/weborigin/Suborigin.h" |
| 79 #include "public/platform/WebURLRequest.h" | 79 #include "public/platform/WebURLRequest.h" |
| 80 #include "wtf/Assertions.h" | 80 #include "wtf/Assertions.h" |
| (...skipping 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1847 visitor->traceWrappers(m_responseDocument); | 1847 visitor->traceWrappers(m_responseDocument); |
| 1848 visitor->traceWrappers(m_responseArrayBuffer); | 1848 visitor->traceWrappers(m_responseArrayBuffer); |
| 1849 XMLHttpRequestEventTarget::traceWrappers(visitor); | 1849 XMLHttpRequestEventTarget::traceWrappers(visitor); |
| 1850 } | 1850 } |
| 1851 | 1851 |
| 1852 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { | 1852 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { |
| 1853 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); | 1853 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); |
| 1854 } | 1854 } |
| 1855 | 1855 |
| 1856 } // namespace blink | 1856 } // namespace blink |
| OLD | NEW |