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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 void decrementRequestCount(const CachedResource*); | 119 void decrementRequestCount(const CachedResource*); |
120 int requestCount() const { return m_requestCount; } | 120 int requestCount() const { return m_requestCount; } |
121 | 121 |
122 bool isPreloaded(const String& urlString) const; | 122 bool isPreloaded(const String& urlString) const; |
123 void clearPreloads(); | 123 void clearPreloads(); |
124 void clearPendingPreloads(); | 124 void clearPendingPreloads(); |
125 void preload(CachedResource::Type, CachedResourceRequest&, const String& cha
rset); | 125 void preload(CachedResource::Type, CachedResourceRequest&, const String& cha
rset); |
126 void checkForPendingPreloads(); | 126 void checkForPendingPreloads(); |
127 void printPreloadStats(); | 127 void printPreloadStats(); |
128 bool canRequest(CachedResource::Type, const KURL&, bool forPreload = false); | 128 bool canRequest(CachedResource::Type, const KURL&, bool forPreload = false); |
129 | |
130 void reportMemoryUsage(MemoryObjectInfo*) const; | |
131 | 129 |
132 static const ResourceLoaderOptions& defaultCachedResourceOptions(); | 130 static const ResourceLoaderOptions& defaultCachedResourceOptions(); |
133 | 131 |
134 private: | 132 private: |
135 explicit CachedResourceLoader(DocumentLoader*); | 133 explicit CachedResourceLoader(DocumentLoader*); |
136 | 134 |
137 CachedResourceHandle<CachedResource> requestResource(CachedResource::Type, C
achedResourceRequest&); | 135 CachedResourceHandle<CachedResource> requestResource(CachedResource::Type, C
achedResourceRequest&); |
138 CachedResourceHandle<CachedResource> revalidateResource(const CachedResource
Request&, CachedResource*); | 136 CachedResourceHandle<CachedResource> revalidateResource(const CachedResource
Request&, CachedResource*); |
139 CachedResourceHandle<CachedResource> loadResource(CachedResource::Type, Cach
edResourceRequest&, const String& charset); | 137 CachedResourceHandle<CachedResource> loadResource(CachedResource::Type, Cach
edResourceRequest&, const String& charset); |
140 void storeResourceTimingInitiatorInformation(const CachedResourceHandle<Cach
edResource>&, const CachedResourceRequest&); | 138 void storeResourceTimingInitiatorInformation(const CachedResourceHandle<Cach
edResource>&, const CachedResourceRequest&); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 m_loader->m_allowStaleResources = m_previousState; | 198 m_loader->m_allowStaleResources = m_previousState; |
201 } | 199 } |
202 private: | 200 private: |
203 CachedResourceLoader* m_loader; | 201 CachedResourceLoader* m_loader; |
204 bool m_previousState; | 202 bool m_previousState; |
205 }; | 203 }; |
206 | 204 |
207 } // namespace WebCore | 205 } // namespace WebCore |
208 | 206 |
209 #endif | 207 #endif |
OLD | NEW |