| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 #include "core/loader/LinkLoader.h" | 54 #include "core/loader/LinkLoader.h" |
| 55 #include "core/loader/NetworkHintsInterface.h" | 55 #include "core/loader/NetworkHintsInterface.h" |
| 56 #include "core/loader/ProgressTracker.h" | 56 #include "core/loader/ProgressTracker.h" |
| 57 #include "core/loader/appcache/ApplicationCacheHost.h" | 57 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 58 #include "core/loader/resource/CSSStyleSheetResource.h" | 58 #include "core/loader/resource/CSSStyleSheetResource.h" |
| 59 #include "core/loader/resource/FontResource.h" | 59 #include "core/loader/resource/FontResource.h" |
| 60 #include "core/loader/resource/ScriptResource.h" | 60 #include "core/loader/resource/ScriptResource.h" |
| 61 #include "core/page/FrameTree.h" | 61 #include "core/page/FrameTree.h" |
| 62 #include "core/page/Page.h" | 62 #include "core/page/Page.h" |
| 63 #include "platform/HTTPNames.h" | 63 #include "platform/HTTPNames.h" |
| 64 #include "platform/MIMETypeRegistry.h" | |
| 65 #include "platform/UserGestureIndicator.h" | 64 #include "platform/UserGestureIndicator.h" |
| 66 #include "platform/mhtml/ArchiveResource.h" | 65 #include "platform/mhtml/ArchiveResource.h" |
| 67 #include "platform/network/ContentSecurityPolicyResponseHeaders.h" | 66 #include "platform/network/ContentSecurityPolicyResponseHeaders.h" |
| 68 #include "platform/network/HTTPParsers.h" | 67 #include "platform/network/HTTPParsers.h" |
| 68 #include "platform/network/mime/MIMETypeRegistry.h" |
| 69 #include "platform/plugins/PluginData.h" | 69 #include "platform/plugins/PluginData.h" |
| 70 #include "platform/weborigin/SchemeRegistry.h" | 70 #include "platform/weborigin/SchemeRegistry.h" |
| 71 #include "platform/weborigin/SecurityPolicy.h" | 71 #include "platform/weborigin/SecurityPolicy.h" |
| 72 #include "public/platform/Platform.h" | 72 #include "public/platform/Platform.h" |
| 73 #include "public/platform/WebDocumentSubresourceFilter.h" | 73 #include "public/platform/WebDocumentSubresourceFilter.h" |
| 74 #include "wtf/Assertions.h" | 74 #include "wtf/Assertions.h" |
| 75 #include "wtf/AutoReset.h" | 75 #include "wtf/AutoReset.h" |
| 76 #include "wtf/text/WTFString.h" | 76 #include "wtf/text/WTFString.h" |
| 77 #include <memory> | 77 #include <memory> |
| 78 | 78 |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 m_writer ? m_writer->encoding() : emptyAtom, true, | 801 m_writer ? m_writer->encoding() : emptyAtom, true, |
| 802 ForceSynchronousParsing); | 802 ForceSynchronousParsing); |
| 803 if (!source.isNull()) | 803 if (!source.isNull()) |
| 804 m_writer->appendReplacingData(source); | 804 m_writer->appendReplacingData(source); |
| 805 endWriting(); | 805 endWriting(); |
| 806 } | 806 } |
| 807 | 807 |
| 808 DEFINE_WEAK_IDENTIFIER_MAP(DocumentLoader); | 808 DEFINE_WEAK_IDENTIFIER_MAP(DocumentLoader); |
| 809 | 809 |
| 810 } // namespace blink | 810 } // namespace blink |
| OLD | NEW |