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

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: don't remove empty line at the end of TextExpectations 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..c43f07acf095514ae835d681e18718af82be17bc 100644
--- a/Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h
+++ b/Source/core/platform/graphics/harfbuzz/HarfBuzzFace.h
@@ -31,8 +31,8 @@
#ifndef HarfBuzzFace_h
#define HarfBuzzFace_h
-#include <hb.h>
-
+#include "hb.h"
+#include "platform/fonts/TypesettingFeatures.h"
#include "wtf/HashMap.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -53,7 +53,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