diff options
Diffstat (limited to 'Source/WebCore/css/FontValue.cpp')
-rw-r--r-- | Source/WebCore/css/FontValue.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebCore/css/FontValue.cpp b/Source/WebCore/css/FontValue.cpp index acb25d24b..0ba1e6e98 100644 --- a/Source/WebCore/css/FontValue.cpp +++ b/Source/WebCore/css/FontValue.cpp @@ -68,12 +68,12 @@ String FontValue::customCssText() const void FontValue::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const { MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); - info.addInstrumentedMember(style); - info.addInstrumentedMember(variant); - info.addInstrumentedMember(weight); - info.addInstrumentedMember(size); - info.addInstrumentedMember(lineHeight); - info.addInstrumentedMember(family); + info.addMember(style); + info.addMember(variant); + info.addMember(weight); + info.addMember(size); + info.addMember(lineHeight); + info.addMember(family); } } |