| 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 Apple Inc. All rights reserved. | 4 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 5 | 5 |
| 6 This library is free software; you can redistribute it and/or | 6 This library is free software; you can redistribute it and/or |
| 7 modify it under the terms of the GNU Library General Public | 7 modify it under the terms of the GNU Library General Public |
| 8 License as published by the Free Software Foundation; either | 8 License as published by the Free Software Foundation; either |
| 9 version 2 of the License, or (at your option) any later version. | 9 version 2 of the License, or (at your option) any later version. |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 This class provides all functionality needed for loading images, style sheet
s and html | 21 This class provides all functionality needed for loading images, style sheet
s and html |
| 22 pages from the web. It has a memory cache for these objects. | 22 pages from the web. It has a memory cache for these objects. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef MemoryCache_h | 25 #ifndef MemoryCache_h |
| 26 #define MemoryCache_h | 26 #define MemoryCache_h |
| 27 | 27 |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/fetch/Resource.h" | 29 #include "core/fetch/Resource.h" |
| 30 #include "core/fetch/ResourcePtr.h" | 30 #include "core/fetch/ResourcePtr.h" |
| 31 #include "public/platform/WebMemoryDumpProvider.h" |
| 31 #include "public/platform/WebThread.h" | 32 #include "public/platform/WebThread.h" |
| 32 #include "wtf/Allocator.h" | 33 #include "wtf/Allocator.h" |
| 33 #include "wtf/HashMap.h" | 34 #include "wtf/HashMap.h" |
| 34 #include "wtf/Noncopyable.h" | 35 #include "wtf/Noncopyable.h" |
| 35 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
| 36 #include "wtf/text/StringHash.h" | 37 #include "wtf/text/StringHash.h" |
| 37 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 38 | 39 |
| 39 namespace blink { | 40 namespace blink { |
| 40 | 41 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 MemoryCacheLRUList() : m_head(nullptr), m_tail(nullptr) { } | 124 MemoryCacheLRUList() : m_head(nullptr), m_tail(nullptr) { } |
| 124 DECLARE_TRACE(); | 125 DECLARE_TRACE(); |
| 125 }; | 126 }; |
| 126 | 127 |
| 127 } | 128 } |
| 128 | 129 |
| 129 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::MemoryCacheLRUList); | 130 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::MemoryCacheLRUList); |
| 130 | 131 |
| 131 namespace blink { | 132 namespace blink { |
| 132 | 133 |
| 133 class CORE_EXPORT MemoryCache final : public GarbageCollectedFinalized<MemoryCac
he>, public WebThread::TaskObserver { | 134 class CORE_EXPORT MemoryCache final : public GarbageCollectedFinalized<MemoryCac
he>, public WebThread::TaskObserver, public WebMemoryDumpProvider { |
| 134 WTF_MAKE_NONCOPYABLE(MemoryCache); | 135 WTF_MAKE_NONCOPYABLE(MemoryCache); |
| 135 public: | 136 public: |
| 136 static MemoryCache* create(); | 137 static MemoryCache* create(); |
| 137 ~MemoryCache(); | 138 ~MemoryCache(); |
| 138 DECLARE_TRACE(); | 139 DECLARE_TRACE(); |
| 139 | 140 |
| 140 struct TypeStatistic { | 141 struct TypeStatistic { |
| 141 STACK_ALLOCATED(); | 142 STACK_ALLOCATED(); |
| 142 size_t count; | 143 size_t count; |
| 143 size_t size; | 144 size_t size; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 MemoryCacheLiveResourcePriority priority(Resource*) const; | 227 MemoryCacheLiveResourcePriority priority(Resource*) const; |
| 227 | 228 |
| 228 // TaskObserver implementation | 229 // TaskObserver implementation |
| 229 void willProcessTask() override; | 230 void willProcessTask() override; |
| 230 void didProcessTask() override; | 231 void didProcessTask() override; |
| 231 | 232 |
| 232 void pruneAll(); | 233 void pruneAll(); |
| 233 | 234 |
| 234 void updateFramePaintTimestamp(); | 235 void updateFramePaintTimestamp(); |
| 235 | 236 |
| 237 // WebMemoryDumpProvider implementation |
| 238 bool onMemoryDump(WebMemoryDumpLevelOfDetail, WebProcessMemoryDump*) overrid
e; |
| 239 |
| 236 private: | 240 private: |
| 237 enum PruneStrategy { | 241 enum PruneStrategy { |
| 238 // Automatically decide how much to prune. | 242 // Automatically decide how much to prune. |
| 239 AutomaticPrune, | 243 AutomaticPrune, |
| 240 // Maximally prune resources. | 244 // Maximally prune resources. |
| 241 MaximalPrune | 245 MaximalPrune |
| 242 }; | 246 }; |
| 243 | 247 |
| 244 MemoryCache(); | 248 MemoryCache(); |
| 245 | 249 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 // Returns the global cache. | 329 // Returns the global cache. |
| 326 CORE_EXPORT MemoryCache* memoryCache(); | 330 CORE_EXPORT MemoryCache* memoryCache(); |
| 327 | 331 |
| 328 // Sets the global cache, used to swap in a test instance. Returns the old | 332 // Sets the global cache, used to swap in a test instance. Returns the old |
| 329 // MemoryCache object. | 333 // MemoryCache object. |
| 330 CORE_EXPORT MemoryCache* replaceMemoryCacheForTesting(MemoryCache*); | 334 CORE_EXPORT MemoryCache* replaceMemoryCacheForTesting(MemoryCache*); |
| 331 | 335 |
| 332 } | 336 } |
| 333 | 337 |
| 334 #endif | 338 #endif |
| OLD | NEW |