summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/cg/FontPlatformData.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/cg/FontPlatformData.h')
-rw-r--r--WebCore/platform/graphics/cg/FontPlatformData.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/WebCore/platform/graphics/cg/FontPlatformData.h b/WebCore/platform/graphics/cg/FontPlatformData.h
index b261f87..e21b444 100644
--- a/WebCore/platform/graphics/cg/FontPlatformData.h
+++ b/WebCore/platform/graphics/cg/FontPlatformData.h
@@ -24,6 +24,7 @@
#ifndef FontPlatformData_h
#define FontPlatformData_h
+#include "FontOrientation.h"
#include "RefCountedGDIHandle.h"
#include "StringImpl.h"
#include <wtf/Forward.h>
@@ -66,6 +67,8 @@ public:
bool syntheticOblique() const { return m_syntheticOblique; }
bool useGDI() const { return m_useGDI; }
+ FontOrientation orientation() const { return Horizontal; } // FIXME: Implement.
+
unsigned hash() const
{
return m_font->hash();
@@ -97,6 +100,6 @@ private:
bool m_useGDI;
};
-}
+} // namespace WebCore
#endif