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

Unified Diff: Source/platform/fonts/shaping/SimpleShaper.h

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 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
Index: Source/platform/fonts/shaping/SimpleShaper.h
diff --git a/Source/platform/fonts/shaping/SimpleShaper.h b/Source/platform/fonts/shaping/SimpleShaper.h
index af07e3b7939ca0504bd8c8372ece47e6337ce403..29f1ef37c16e9fec0e233ca25fd8d15d86c33b2a 100644
--- a/Source/platform/fonts/shaping/SimpleShaper.h
+++ b/Source/platform/fonts/shaping/SimpleShaper.h
@@ -24,7 +24,6 @@
#define SimpleShaper_h
#include "platform/PlatformExport.h"
-#include "platform/fonts/SVGGlyph.h"
#include "platform/text/TextRun.h"
#include "wtf/HashSet.h"
#include "wtf/Vector.h"
@@ -65,10 +64,6 @@ public:
float runWidthSoFar() const { return m_runWidthSoFar; }
unsigned currentOffset() { return m_currentCharacter; }
-#if ENABLE(SVG_FONTS)
- Vector<SVGGlyph::ArabicForm>& arabicForms() { return m_arabicForms; }
-#endif
-
private:
const Font* m_font;
const TextRun& m_run;
@@ -78,9 +73,6 @@ private:
float m_expansionPerOpportunity;
bool m_isAfterExpansion;
-#if ENABLE(SVG_FONTS)
- Vector<SVGGlyph::ArabicForm> m_arabicForms;
-#endif
struct CharacterData {
UChar32 character;
unsigned clusterLength;

Powered by Google App Engine
This is Rietveld 408576698