| 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/frame/FrameHost.h" | 37 #include "core/frame/FrameHost.h" |
| 38 #include "core/frame/LocalDOMWindow.h" | 38 #include "core/frame/LocalDOMWindow.h" |
| 39 #include "core/frame/LocalFrame.h" | 39 #include "core/frame/LocalFrame.h" |
| 40 #include "core/frame/LocalFrameClient.h" | 40 #include "core/frame/LocalFrameClient.h" |
| 41 #include "core/frame/Settings.h" | 41 #include "core/frame/Settings.h" |
| 42 #include "core/frame/csp/ContentSecurityPolicy.h" | 42 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 43 #include "core/html/HTMLFrameOwnerElement.h" | 43 #include "core/html/HTMLFrameOwnerElement.h" |
| 44 #include "core/html/parser/HTMLParserIdioms.h" | 44 #include "core/html/parser/HTMLParserIdioms.h" |
| 45 #include "core/html/parser/TextResourceDecoder.h" | 45 #include "core/html/parser/TextResourceDecoder.h" |
| 46 #include "core/inspector/ConsoleMessage.h" | 46 #include "core/inspector/ConsoleMessage.h" |
| 47 #include "core/inspector/InspectorInstrumentation.h" | |
| 48 #include "core/inspector/InspectorTraceEvents.h" | 47 #include "core/inspector/InspectorTraceEvents.h" |
| 49 #include "core/inspector/MainThreadDebugger.h" | 48 #include "core/inspector/MainThreadDebugger.h" |
| 49 #include "core/instrumentation/CoreProbes.h" |
| 50 #include "core/loader/FrameFetchContext.h" | 50 #include "core/loader/FrameFetchContext.h" |
| 51 #include "core/loader/FrameLoader.h" | 51 #include "core/loader/FrameLoader.h" |
| 52 #include "core/loader/LinkLoader.h" | 52 #include "core/loader/LinkLoader.h" |
| 53 #include "core/loader/NetworkHintsInterface.h" | 53 #include "core/loader/NetworkHintsInterface.h" |
| 54 #include "core/loader/ProgressTracker.h" | 54 #include "core/loader/ProgressTracker.h" |
| 55 #include "core/loader/SubresourceFilter.h" | 55 #include "core/loader/SubresourceFilter.h" |
| 56 #include "core/loader/appcache/ApplicationCacheHost.h" | 56 #include "core/loader/appcache/ApplicationCacheHost.h" |
| 57 #include "core/loader/resource/CSSStyleSheetResource.h" | 57 #include "core/loader/resource/CSSStyleSheetResource.h" |
| 58 #include "core/loader/resource/FontResource.h" | 58 #include "core/loader/resource/FontResource.h" |
| 59 #include "core/loader/resource/ImageResource.h" | 59 #include "core/loader/resource/ImageResource.h" |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 InstallNewDocumentReason::kJavascriptURL, | 945 InstallNewDocumentReason::kJavascriptURL, |
| 946 ForceSynchronousParsing, KURL()); | 946 ForceSynchronousParsing, KURL()); |
| 947 if (!source.isNull()) | 947 if (!source.isNull()) |
| 948 m_writer->appendReplacingData(source); | 948 m_writer->appendReplacingData(source); |
| 949 endWriting(); | 949 endWriting(); |
| 950 } | 950 } |
| 951 | 951 |
| 952 DEFINE_WEAK_IDENTIFIER_MAP(DocumentLoader); | 952 DEFINE_WEAK_IDENTIFIER_MAP(DocumentLoader); |
| 953 | 953 |
| 954 } // namespace blink | 954 } // namespace blink |
| OLD | NEW |