Merge backout of 5bc893b6bdf23dcd44601727df5baab8a0dd361e due to mac startup failures.

This commit is contained in:
L. David Baron 2008-11-25 15:08:44 -08:00
commit 0e85e09e27

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 {