Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(708)

Unified Diff: Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h

Issue 69513002: Implement TrueType kerning support for HarfBuzz text path. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix layout tests Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h
diff --git a/Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h b/Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h
index cf16c33225b15b5b21167d80962275ef4e8ab4de..ea41013516f39015fecb1a5719ebdd5ccb242afa 100644
--- a/Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h
+++ b/Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h
@@ -31,13 +31,14 @@
#ifndef HarfBuzzFace_h
#define HarfBuzzFace_h
-#include <hb.h>
-
+#include "platform/fonts/TypesettingFeatures.h"
#include "wtf/HashMap.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
+#include <hb.h>
eae 2013/11/13 19:58:02 #include "hb.h"
+
namespace WebCore {
class FontPlatformData;
@@ -53,7 +54,7 @@ public:
}
~HarfBuzzFace();
- hb_font_t* createFont();
+ hb_font_t* createFont(const TypesettingFeatures&);
void setScriptForVerticalGlyphSubstitution(hb_buffer_t*);

Powered by Google App Engine
This is Rietveld 408576698