| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
| 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
| 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
| 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
| 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 6 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
| 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 Library General Public | 9 modify it under the terms of the GNU Library General Public |
| 10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
| 11 version 2 of the License, or (at your option) any later version. | 11 version 2 of the License, or (at your option) any later version. |
| 12 | 12 |
| 13 This library is distributed in the hope that it will be useful, | 13 This library is distributed in the hope that it will be useful, |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 Library General Public License for more details. | 16 Library General Public License for more details. |
| 17 | 17 |
| 18 You should have received a copy of the GNU Library General Public License | 18 You should have received a copy of the GNU Library General Public License |
| 19 along with this library; see the file COPYING.LIB. If not, write to | 19 along with this library; see the file COPYING.LIB. If not, write to |
| 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 Boston, MA 02110-1301, USA. | 21 Boston, MA 02110-1301, USA. |
| 22 | 22 |
| 23 This class provides all functionality needed for loading images, style sheet
s and html | 23 This class provides all functionality needed for loading images, style sheet
s and html |
| 24 pages from the web. It has a memory cache for these objects. | 24 pages from the web. It has a memory cache for these objects. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "CachedResourceLoader.h" | 28 #include "core/loader/cache/CachedResourceLoader.h" |
| 29 | 29 |
| 30 #include "CachedCSSStyleSheet.h" | |
| 31 #include "CachedFont.h" | |
| 32 #include "CachedImage.h" | |
| 33 #include "CachedRawResource.h" | |
| 34 #include "CachedResourceRequest.h" | |
| 35 #include "CachedSVGDocument.h" | |
| 36 #include "CachedScript.h" | |
| 37 #include "CachedShader.h" | |
| 38 #include "CachedXSLStyleSheet.h" | |
| 39 #include "Console.h" | 30 #include "Console.h" |
| 40 #include "ContentSecurityPolicy.h" | 31 #include "ContentSecurityPolicy.h" |
| 41 #include "DOMWindow.h" | 32 #include "DOMWindow.h" |
| 42 #include "Document.h" | 33 #include "Document.h" |
| 43 #include "Frame.h" | 34 #include "Frame.h" |
| 44 #include "HTMLElement.h" | 35 #include "HTMLElement.h" |
| 45 #include "HTMLFrameOwnerElement.h" | 36 #include "HTMLFrameOwnerElement.h" |
| 46 #include "MemoryCache.h" | |
| 47 #include "Performance.h" | 37 #include "Performance.h" |
| 48 #include "ScriptController.h" | 38 #include "ScriptController.h" |
| 49 #include "SecurityOrigin.h" | 39 #include "SecurityOrigin.h" |
| 50 #include "Settings.h" | 40 #include "Settings.h" |
| 51 #include "core/loader/DocumentLoader.h" | 41 #include "core/loader/DocumentLoader.h" |
| 52 #include "core/loader/FrameLoader.h" | 42 #include "core/loader/FrameLoader.h" |
| 53 #include "core/loader/FrameLoaderClient.h" | 43 #include "core/loader/FrameLoaderClient.h" |
| 54 #include "core/loader/PingLoader.h" | 44 #include "core/loader/PingLoader.h" |
| 45 #include "core/loader/cache/CachedCSSStyleSheet.h" |
| 46 #include "core/loader/cache/CachedFont.h" |
| 47 #include "core/loader/cache/CachedImage.h" |
| 48 #include "core/loader/cache/CachedRawResource.h" |
| 49 #include "core/loader/cache/CachedResourceRequest.h" |
| 50 #include "core/loader/cache/CachedSVGDocument.h" |
| 51 #include "core/loader/cache/CachedScript.h" |
| 52 #include "core/loader/cache/CachedShader.h" |
| 53 #include "core/loader/cache/CachedXSLStyleSheet.h" |
| 54 #include "core/loader/cache/MemoryCache.h" |
| 55 #include "core/page/SecurityPolicy.h" | 55 #include "core/page/SecurityPolicy.h" |
| 56 #include "core/platform/Logging.h" | 56 #include "core/platform/Logging.h" |
| 57 #include <wtf/MemoryInstrumentationHashMap.h> | 57 #include <wtf/MemoryInstrumentationHashMap.h> |
| 58 #include <wtf/MemoryInstrumentationHashSet.h> | 58 #include <wtf/MemoryInstrumentationHashSet.h> |
| 59 #include <wtf/MemoryInstrumentationListHashSet.h> | 59 #include <wtf/MemoryInstrumentationListHashSet.h> |
| 60 #include <wtf/text/CString.h> | 60 #include <wtf/text/CString.h> |
| 61 #include <wtf/text/WTFString.h> | 61 #include <wtf/text/WTFString.h> |
| 62 #include <wtf/UnusedParam.h> | 62 #include <wtf/UnusedParam.h> |
| 63 | 63 |
| 64 #include "CachedTextTrack.h" | 64 #include "core/loader/cache/CachedTextTrack.h" |
| 65 | 65 |
| 66 #define PRELOAD_DEBUG 0 | 66 #define PRELOAD_DEBUG 0 |
| 67 | 67 |
| 68 namespace WebCore { | 68 namespace WebCore { |
| 69 | 69 |
| 70 static CachedResource* createResource(CachedResource::Type type, ResourceRequest
& request, const String& charset) | 70 static CachedResource* createResource(CachedResource::Type type, ResourceRequest
& request, const String& charset) |
| 71 { | 71 { |
| 72 switch (type) { | 72 switch (type) { |
| 73 case CachedResource::ImageResource: | 73 case CachedResource::ImageResource: |
| 74 return new CachedImage(request); | 74 return new CachedImage(request); |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 info.ignoreMember(m_initiatorMap); | 1011 info.ignoreMember(m_initiatorMap); |
| 1012 } | 1012 } |
| 1013 | 1013 |
| 1014 const ResourceLoaderOptions& CachedResourceLoader::defaultCachedResourceOptions(
) | 1014 const ResourceLoaderOptions& CachedResourceLoader::defaultCachedResourceOptions(
) |
| 1015 { | 1015 { |
| 1016 static ResourceLoaderOptions options(SendCallbacks, SniffContent, BufferData
, AllowStoredCredentials, AskClientForCrossOriginCredentials, DoSecurityCheck); | 1016 static ResourceLoaderOptions options(SendCallbacks, SniffContent, BufferData
, AllowStoredCredentials, AskClientForCrossOriginCredentials, DoSecurityCheck); |
| 1017 return options; | 1017 return options; |
| 1018 } | 1018 } |
| 1019 | 1019 |
| 1020 } | 1020 } |
| OLD | NEW |