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 |
(...skipping 10 matching lines...) Expand all Loading... |
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 "CachedResourceLoader.h" |
29 | 29 |
30 #include "CachedCSSStyleSheet.h" | 30 #include "CachedCSSStyleSheet.h" |
31 #include "CachedSVGDocument.h" | |
32 #include "CachedFont.h" | 31 #include "CachedFont.h" |
33 #include "CachedImage.h" | 32 #include "CachedImage.h" |
34 #include "CachedRawResource.h" | 33 #include "CachedRawResource.h" |
35 #include "CachedResourceRequest.h" | 34 #include "CachedResourceRequest.h" |
| 35 #include "CachedSVGDocument.h" |
36 #include "CachedScript.h" | 36 #include "CachedScript.h" |
37 #include "CachedShader.h" | 37 #include "CachedShader.h" |
38 #include "CachedXSLStyleSheet.h" | 38 #include "CachedXSLStyleSheet.h" |
39 #include "Console.h" | 39 #include "Console.h" |
40 #include "ContentSecurityPolicy.h" | 40 #include "ContentSecurityPolicy.h" |
41 #include "DOMWindow.h" | 41 #include "DOMWindow.h" |
42 #include "Document.h" | 42 #include "Document.h" |
43 #include "DocumentLoader.h" | 43 #include "DocumentLoader.h" |
44 #include "Frame.h" | 44 #include "Frame.h" |
45 #include "FrameLoader.h" | 45 #include "FrameLoader.h" |
46 #include "FrameLoaderClient.h" | 46 #include "FrameLoaderClient.h" |
47 #include "HTMLElement.h" | 47 #include "HTMLElement.h" |
48 #include "HTMLFrameOwnerElement.h" | 48 #include "HTMLFrameOwnerElement.h" |
49 #include "Logging.h" | |
50 #include "MemoryCache.h" | 49 #include "MemoryCache.h" |
51 #include "Performance.h" | 50 #include "Performance.h" |
52 #include "PingLoader.h" | 51 #include "PingLoader.h" |
53 #include "ScriptController.h" | 52 #include "ScriptController.h" |
54 #include "SecurityOrigin.h" | 53 #include "SecurityOrigin.h" |
55 #include "Settings.h" | 54 #include "Settings.h" |
56 #include "core/page/SecurityPolicy.h" | 55 #include "core/page/SecurityPolicy.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/UnusedParam.h> | |
61 #include <wtf/text/CString.h> | 60 #include <wtf/text/CString.h> |
62 #include <wtf/text/WTFString.h> | 61 #include <wtf/text/WTFString.h> |
| 62 #include <wtf/UnusedParam.h> |
63 | 63 |
64 #include "CachedTextTrack.h" | 64 #include "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) { |
(...skipping 938 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 |