aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-07-24 17:34:41 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-07-24 17:34:41 +0000
commitaa8483b49d069e15c9c8bce85bf2a440b27f5e9d (patch)
tree85355fa3fc47271c36d6538cd142909be726545e /include
parent1bb4be2384c48c2c8dfa4c855095792886b1b3a0 (diff)
SkSfntUtils should use public types.
git-svn-id: http://skia.googlecode.com/svn/trunk@4734 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/utils/SkSfntUtils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/utils/SkSfntUtils.h b/include/utils/SkSfntUtils.h
index d87a4ed665..4e8d7548f9 100644
--- a/include/utils/SkSfntUtils.h
+++ b/include/utils/SkSfntUtils.h
@@ -10,7 +10,7 @@
#define SkSfntUtils_DEFINED
#include "Sk64.h"
-#include "SkFontHost.h"
+#include "SkTypeface.h"
struct SkSfntTable_head {
SkFixed fVersion;
@@ -52,8 +52,8 @@ struct SkSfntTable_maxp {
class SkSfntUtils {
public:
- static bool ReadTable_head(SkFontID, SkSfntTable_head*);
- static bool ReadTable_maxp(SkFontID, SkSfntTable_maxp*);
+ static bool ReadTable_head(SkTypeface&, SkSfntTable_head*);
+ static bool ReadTable_maxp(SkTypeface&, SkSfntTable_maxp*);
};
#endif