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) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 4 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
5 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ | 5 Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ |
6 | 6 |
7 This library is free software; you can redistribute it and/or | 7 This library is free software; you can redistribute it and/or |
8 modify it under the terms of the GNU Library General Public | 8 modify it under the terms of the GNU Library General Public |
9 License as published by the Free Software Foundation; either | 9 License as published by the Free Software Foundation; either |
10 version 2 of the License, or (at your option) any later version. | 10 version 2 of the License, or (at your option) any later version. |
(...skipping 11 matching lines...) Expand all Loading... |
22 This class provides all functionality needed for loading images, style sheet
s and html | 22 This class provides all functionality needed for loading images, style sheet
s and html |
23 pages from the web. It has a memory cache for these objects. | 23 pages from the web. It has a memory cache for these objects. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef CachedResourceLoader_h | 26 #ifndef CachedResourceLoader_h |
27 #define CachedResourceLoader_h | 27 #define CachedResourceLoader_h |
28 | 28 |
29 #include "core/loader/cache/CachePolicy.h" | 29 #include "core/loader/cache/CachePolicy.h" |
30 #include "core/loader/cache/CachedResource.h" | 30 #include "core/loader/cache/CachedResource.h" |
31 #include "core/loader/cache/CachedResourceHandle.h" | 31 #include "core/loader/cache/CachedResourceHandle.h" |
| 32 #include "core/loader/cache/CachedResourceInitiatorInfo.h" |
32 #include "core/loader/cache/CachedResourceRequest.h" | 33 #include "core/loader/cache/CachedResourceRequest.h" |
33 #include "core/platform/Timer.h" | 34 #include "core/platform/Timer.h" |
34 #include "core/platform/network/ResourceLoadPriority.h" | 35 #include "core/platform/network/ResourceLoadPriority.h" |
35 #include <wtf/Deque.h> | 36 #include <wtf/Deque.h> |
36 #include <wtf/HashMap.h> | 37 #include <wtf/HashMap.h> |
37 #include <wtf/HashSet.h> | 38 #include <wtf/HashSet.h> |
38 #include <wtf/ListHashSet.h> | 39 #include <wtf/ListHashSet.h> |
39 #include <wtf/text/StringHash.h> | 40 #include <wtf/text/StringHash.h> |
40 | 41 |
41 namespace WebCore { | 42 namespace WebCore { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 OwnPtr<ListHashSet<CachedResource*> > m_preloads; | 165 OwnPtr<ListHashSet<CachedResource*> > m_preloads; |
165 struct PendingPreload { | 166 struct PendingPreload { |
166 CachedResource::Type m_type; | 167 CachedResource::Type m_type; |
167 CachedResourceRequest m_request; | 168 CachedResourceRequest m_request; |
168 String m_charset; | 169 String m_charset; |
169 }; | 170 }; |
170 Deque<PendingPreload> m_pendingPreloads; | 171 Deque<PendingPreload> m_pendingPreloads; |
171 | 172 |
172 Timer<CachedResourceLoader> m_garbageCollectDocumentResourcesTimer; | 173 Timer<CachedResourceLoader> m_garbageCollectDocumentResourcesTimer; |
173 | 174 |
174 struct InitiatorInfo { | 175 HashMap<CachedResource*, CachedResourceInitiatorInfo> m_initiatorMap; |
175 AtomicString name; | |
176 double startTime; | |
177 }; | |
178 HashMap<CachedResource*, InitiatorInfo> m_initiatorMap; | |
179 | 176 |
180 // 29 bits left | 177 // 29 bits left |
181 bool m_autoLoadImages : 1; | 178 bool m_autoLoadImages : 1; |
182 bool m_imagesEnabled : 1; | 179 bool m_imagesEnabled : 1; |
183 bool m_allowStaleResources : 1; | 180 bool m_allowStaleResources : 1; |
184 }; | 181 }; |
185 | 182 |
186 class ResourceCacheValidationSuppressor { | 183 class ResourceCacheValidationSuppressor { |
187 WTF_MAKE_NONCOPYABLE(ResourceCacheValidationSuppressor); | 184 WTF_MAKE_NONCOPYABLE(ResourceCacheValidationSuppressor); |
188 WTF_MAKE_FAST_ALLOCATED; | 185 WTF_MAKE_FAST_ALLOCATED; |
(...skipping 13 matching lines...) Expand all Loading... |
202 m_loader->m_allowStaleResources = m_previousState; | 199 m_loader->m_allowStaleResources = m_previousState; |
203 } | 200 } |
204 private: | 201 private: |
205 CachedResourceLoader* m_loader; | 202 CachedResourceLoader* m_loader; |
206 bool m_previousState; | 203 bool m_previousState; |
207 }; | 204 }; |
208 | 205 |
209 } // namespace WebCore | 206 } // namespace WebCore |
210 | 207 |
211 #endif | 208 #endif |
OLD | NEW |