| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 #include "core/xmlhttprequest/XMLHttpRequestUpload.h" | 62 #include "core/xmlhttprequest/XMLHttpRequestUpload.h" |
| 63 #include "platform/FileMetadata.h" | 63 #include "platform/FileMetadata.h" |
| 64 #include "platform/HTTPNames.h" | 64 #include "platform/HTTPNames.h" |
| 65 #include "platform/Histogram.h" | 65 #include "platform/Histogram.h" |
| 66 #include "platform/RuntimeEnabledFeatures.h" | 66 #include "platform/RuntimeEnabledFeatures.h" |
| 67 #include "platform/SharedBuffer.h" | 67 #include "platform/SharedBuffer.h" |
| 68 #include "platform/blob/BlobData.h" | 68 #include "platform/blob/BlobData.h" |
| 69 #include "platform/loader/fetch/CrossOriginAccessControl.h" | 69 #include "platform/loader/fetch/CrossOriginAccessControl.h" |
| 70 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" | 70 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" |
| 71 #include "platform/loader/fetch/FetchUtils.h" | 71 #include "platform/loader/fetch/FetchUtils.h" |
| 72 #include "platform/loader/fetch/ResourceError.h" |
| 72 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 73 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 74 #include "platform/loader/fetch/ResourceRequest.h" |
| 73 #include "platform/network/HTTPParsers.h" | 75 #include "platform/network/HTTPParsers.h" |
| 74 #include "platform/network/NetworkLog.h" | 76 #include "platform/network/NetworkLog.h" |
| 75 #include "platform/network/ParsedContentType.h" | 77 #include "platform/network/ParsedContentType.h" |
| 76 #include "platform/network/ResourceError.h" | |
| 77 #include "platform/network/ResourceRequest.h" | |
| 78 #include "platform/weborigin/SecurityOrigin.h" | 78 #include "platform/weborigin/SecurityOrigin.h" |
| 79 #include "platform/weborigin/SecurityPolicy.h" | 79 #include "platform/weborigin/SecurityPolicy.h" |
| 80 #include "platform/weborigin/Suborigin.h" | 80 #include "platform/weborigin/Suborigin.h" |
| 81 #include "public/platform/WebURLRequest.h" | 81 #include "public/platform/WebURLRequest.h" |
| 82 #include "wtf/Assertions.h" | 82 #include "wtf/Assertions.h" |
| 83 #include "wtf/AutoReset.h" | 83 #include "wtf/AutoReset.h" |
| 84 #include "wtf/StdLibExtras.h" | 84 #include "wtf/StdLibExtras.h" |
| 85 #include "wtf/text/CString.h" | 85 #include "wtf/text/CString.h" |
| 86 | 86 |
| 87 namespace blink { | 87 namespace blink { |
| (...skipping 1805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1893 visitor->traceWrappers(m_responseDocument); | 1893 visitor->traceWrappers(m_responseDocument); |
| 1894 visitor->traceWrappers(m_responseArrayBuffer); | 1894 visitor->traceWrappers(m_responseArrayBuffer); |
| 1895 XMLHttpRequestEventTarget::traceWrappers(visitor); | 1895 XMLHttpRequestEventTarget::traceWrappers(visitor); |
| 1896 } | 1896 } |
| 1897 | 1897 |
| 1898 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { | 1898 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { |
| 1899 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); | 1899 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); |
| 1900 } | 1900 } |
| 1901 | 1901 |
| 1902 } // namespace blink | 1902 } // namespace blink |
| OLD | NEW |