| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "core/fileapi/File.h" | 47 #include "core/fileapi/File.h" |
| 48 #include "core/fileapi/FileReaderLoader.h" | 48 #include "core/fileapi/FileReaderLoader.h" |
| 49 #include "core/fileapi/FileReaderLoaderClient.h" | 49 #include "core/fileapi/FileReaderLoaderClient.h" |
| 50 #include "core/frame/Deprecation.h" | 50 #include "core/frame/Deprecation.h" |
| 51 #include "core/frame/Settings.h" | 51 #include "core/frame/Settings.h" |
| 52 #include "core/frame/csp/ContentSecurityPolicy.h" | 52 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 53 #include "core/html/FormData.h" | 53 #include "core/html/FormData.h" |
| 54 #include "core/html/HTMLDocument.h" | 54 #include "core/html/HTMLDocument.h" |
| 55 #include "core/html/parser/TextResourceDecoder.h" | 55 #include "core/html/parser/TextResourceDecoder.h" |
| 56 #include "core/inspector/ConsoleMessage.h" | 56 #include "core/inspector/ConsoleMessage.h" |
| 57 #include "core/inspector/InspectorInstrumentation.h" | |
| 58 #include "core/inspector/InspectorTraceEvents.h" | 57 #include "core/inspector/InspectorTraceEvents.h" |
| 59 #include "core/loader/ThreadableLoader.h" | 58 #include "core/loader/ThreadableLoader.h" |
| 60 #include "core/page/ChromeClient.h" | 59 #include "core/page/ChromeClient.h" |
| 61 #include "core/page/Page.h" | 60 #include "core/page/Page.h" |
| 61 #include "core/probe/CoreProbes.h" |
| 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" |
| (...skipping 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 visitor->traceWrappers(m_responseDocument); | 1882 visitor->traceWrappers(m_responseDocument); |
| 1883 visitor->traceWrappers(m_responseArrayBuffer); | 1883 visitor->traceWrappers(m_responseArrayBuffer); |
| 1884 XMLHttpRequestEventTarget::traceWrappers(visitor); | 1884 XMLHttpRequestEventTarget::traceWrappers(visitor); |
| 1885 } | 1885 } |
| 1886 | 1886 |
| 1887 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { | 1887 std::ostream& operator<<(std::ostream& ostream, const XMLHttpRequest* xhr) { |
| 1888 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); | 1888 return ostream << "XMLHttpRequest " << static_cast<const void*>(xhr); |
| 1889 } | 1889 } |
| 1890 | 1890 |
| 1891 } // namespace blink | 1891 } // namespace blink |
| OLD | NEW |