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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 void willProcessTask() override; | 229 void willProcessTask() override; |
230 void didProcessTask() override; | 230 void didProcessTask() override; |
231 | 231 |
232 void pruneAll(); | 232 void pruneAll(); |
233 | 233 |
234 void updateFramePaintTimestamp(); | 234 void updateFramePaintTimestamp(); |
235 | 235 |
236 // Take memory usage snapshot for tracing. | 236 // Take memory usage snapshot for tracing. |
237 void onMemoryDump(WebMemoryDumpLevelOfDetail, WebProcessMemoryDump*); | 237 void onMemoryDump(WebMemoryDumpLevelOfDetail, WebProcessMemoryDump*); |
238 | 238 |
| 239 bool isInSameLRUListForTest(const Resource*, const Resource*); |
239 private: | 240 private: |
240 enum PruneStrategy { | 241 enum PruneStrategy { |
241 // Automatically decide how much to prune. | 242 // Automatically decide how much to prune. |
242 AutomaticPrune, | 243 AutomaticPrune, |
243 // Maximally prune resources. | 244 // Maximally prune resources. |
244 MaximalPrune | 245 MaximalPrune |
245 }; | 246 }; |
246 | 247 |
247 MemoryCache(); | 248 MemoryCache(); |
248 | 249 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 // Returns the global cache. | 329 // Returns the global cache. |
329 CORE_EXPORT MemoryCache* memoryCache(); | 330 CORE_EXPORT MemoryCache* memoryCache(); |
330 | 331 |
331 // 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 |
332 // MemoryCache object. | 333 // MemoryCache object. |
333 CORE_EXPORT MemoryCache* replaceMemoryCacheForTesting(MemoryCache*); | 334 CORE_EXPORT MemoryCache* replaceMemoryCacheForTesting(MemoryCache*); |
334 | 335 |
335 } | 336 } |
336 | 337 |
337 #endif | 338 #endif |
OLD | NEW |