| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> | 7 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "core/dom/IgnoreDestructiveWriteCountIncrementer.h" | 33 #include "core/dom/IgnoreDestructiveWriteCountIncrementer.h" |
| 34 #include "core/dom/ScriptLoaderClient.h" | 34 #include "core/dom/ScriptLoaderClient.h" |
| 35 #include "core/dom/ScriptRunner.h" | 35 #include "core/dom/ScriptRunner.h" |
| 36 #include "core/dom/ScriptableDocumentParser.h" | 36 #include "core/dom/ScriptableDocumentParser.h" |
| 37 #include "core/dom/Text.h" | 37 #include "core/dom/Text.h" |
| 38 #include "core/events/Event.h" | 38 #include "core/events/Event.h" |
| 39 #include "core/fetch/AccessControlStatus.h" | 39 #include "core/fetch/AccessControlStatus.h" |
| 40 #include "core/fetch/FetchRequest.h" | 40 #include "core/fetch/FetchRequest.h" |
| 41 #include "core/fetch/MemoryCache.h" | 41 #include "core/fetch/MemoryCache.h" |
| 42 #include "core/fetch/ResourceFetcher.h" | 42 #include "core/fetch/ResourceFetcher.h" |
| 43 #include "core/fetch/ScriptResource.h" | |
| 44 #include "core/frame/LocalFrame.h" | 43 #include "core/frame/LocalFrame.h" |
| 45 #include "core/frame/SubresourceIntegrity.h" | 44 #include "core/frame/SubresourceIntegrity.h" |
| 46 #include "core/frame/UseCounter.h" | 45 #include "core/frame/UseCounter.h" |
| 47 #include "core/frame/csp/ContentSecurityPolicy.h" | 46 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 48 #include "core/html/CrossOriginAttribute.h" | 47 #include "core/html/CrossOriginAttribute.h" |
| 49 #include "core/html/HTMLScriptElement.h" | 48 #include "core/html/HTMLScriptElement.h" |
| 50 #include "core/html/imports/HTMLImport.h" | 49 #include "core/html/imports/HTMLImport.h" |
| 51 #include "core/html/parser/HTMLParserIdioms.h" | 50 #include "core/html/parser/HTMLParserIdioms.h" |
| 52 #include "core/inspector/ConsoleMessage.h" | 51 #include "core/inspector/ConsoleMessage.h" |
| 53 #include "core/svg/SVGScriptElement.h" | 52 #include "core/svg/SVGScriptElement.h" |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 if (isHTMLScriptLoader(element)) | 647 if (isHTMLScriptLoader(element)) |
| 649 return toHTMLScriptElement(element)->loader(); | 648 return toHTMLScriptElement(element)->loader(); |
| 650 | 649 |
| 651 if (isSVGScriptLoader(element)) | 650 if (isSVGScriptLoader(element)) |
| 652 return toSVGScriptElement(element)->loader(); | 651 return toSVGScriptElement(element)->loader(); |
| 653 | 652 |
| 654 return 0; | 653 return 0; |
| 655 } | 654 } |
| 656 | 655 |
| 657 } // namespace blink | 656 } // namespace blink |
| OLD | NEW |