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

Unified Diff: Source/platform/fonts/WidthIterator.h

Issue 181443002: Use glyph-ids for lookups of SVG font kerning-pairs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Vector<...>::append -> Vector<...>::appendVector. Created 6 years, 10 months 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
« no previous file with comments | « Source/platform/fonts/Font.cpp ('k') | Source/platform/text/TextRun.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/WidthIterator.h
diff --git a/Source/platform/fonts/WidthIterator.h b/Source/platform/fonts/WidthIterator.h
index 3df34b6c46f1b60b4588730b571add27e2ced6ab..bd54b164abfde87b0ffc5e5180aa270a4bda4d5b 100644
--- a/Source/platform/fonts/WidthIterator.h
+++ b/Source/platform/fonts/WidthIterator.h
@@ -55,8 +55,6 @@ public:
float runWidthSoFar() const { return m_runWidthSoFar; }
#if ENABLE(SVG_FONTS)
- String lastGlyphName() const { return m_lastGlyphName; }
- void setLastGlyphName(const String& name) { m_lastGlyphName = name; }
Vector<SVGGlyph::ArabicForm>& arabicForms() { return m_arabicForms; }
#endif
@@ -78,7 +76,6 @@ public:
float m_finalRoundingWidth;
#if ENABLE(SVG_FONTS)
- String m_lastGlyphName;
Vector<SVGGlyph::ArabicForm> m_arabicForms;
#endif
« no previous file with comments | « Source/platform/fonts/Font.cpp ('k') | Source/platform/text/TextRun.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698