| Index: third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontCache.cpp b/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| index 3a7a8db2b36ae38f15abb6e66edf6d4b82c66917..1e19052f78041f32055a032408279387856d280d 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontCache.cpp
|
| @@ -393,6 +393,14 @@ void FontCache::dumpFontPlatformDataCache(base::trace_event::ProcessMemoryDump*
|
| memoryDump->AddSuballocation(dump->guid(), WTF::Partitions::kAllocatedObjectPoolName);
|
| }
|
|
|
| +void FontCache::dumpFontDataCache(base::trace_event::ProcessMemoryDump* memoryDump)
|
| +{
|
| + DCHECK(isMainThread());
|
| + if (!gFontDataCache)
|
| + return;
|
| + gFontDataCache->dumpCountAndGlyphToBoundsMaps(memoryDump);
|
| +}
|
| +
|
| void FontCache::dumpShapeResultCache(base::trace_event::ProcessMemoryDump* memoryDump)
|
| {
|
| ASSERT(isMainThread());
|
|
|