diff options
Diffstat (limited to 'WebCore/platform/graphics/SegmentedFontData.cpp')
-rw-r--r-- | WebCore/platform/graphics/SegmentedFontData.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/SegmentedFontData.cpp b/WebCore/platform/graphics/SegmentedFontData.cpp index 1731d16..7e10040 100644 --- a/WebCore/platform/graphics/SegmentedFontData.cpp +++ b/WebCore/platform/graphics/SegmentedFontData.cpp @@ -26,6 +26,7 @@ #include "config.h" #include "SegmentedFontData.h" +#include "PlatformString.h" #include "SimpleFontData.h" #include <wtf/Assertions.h> @@ -87,4 +88,11 @@ bool SegmentedFontData::isSegmented() const return true; } +#ifndef NDEBUG +String SegmentedFontData::description() const +{ + return "[segmented font]"; +} +#endif + } // namespace WebCore |