diff options
Diffstat (limited to 'WebCore/platform/graphics/FontSelector.h')
-rw-r--r-- | WebCore/platform/graphics/FontSelector.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/WebCore/platform/graphics/FontSelector.h b/WebCore/platform/graphics/FontSelector.h index b0e9dfa..c5b3651 100644 --- a/WebCore/platform/graphics/FontSelector.h +++ b/WebCore/platform/graphics/FontSelector.h @@ -36,9 +36,8 @@ class FontDescription; class FontSelector : public RefCounted<FontSelector> { public: - FontSelector() : RefCounted<FontSelector>(0) { } - virtual ~FontSelector() { } - virtual FontData* getFontData(const FontDescription&, const AtomicString& familyName) = 0; + virtual ~FontSelector() {}; + virtual FontData* getFontData(const FontDescription& fontDescription, const AtomicString& familyName) = 0; }; } // namespace WebCore |