Back out 5bc893b6bdf23dcd44601727df5baab8a0dd361e due to mac startup failures.

This commit is contained in:
L. David Baron 2008-11-25 15:08:40 -08:00
parent 4c4b3cbb89
commit 3211ab3eca

View File

@ -64,6 +64,14 @@ struct gfxFontFaceSrc {
PRUint32 mFormatFlags;
};
// subclassed by loader code to contain needed context info
// lifetime: user font set lifetime
class gfxFontLoaderContext {
public:
gfxFontLoaderContext() { }
virtual ~gfxFontLoaderContext() { }
};
// subclassed to store platform-specific code cleaned out when font entry is deleted
// lifetime: from when platform font is created until it is deactivated
class gfxUserFontData {