| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #import <wtf/Vector.h> | 28 #import <wtf/Vector.h> |
| 29 | 29 |
| 30 // This interface exists so that third party products (like Silk) can patch in t
o an Obj-C method to manipulate WebKit's font caching/substitution. | 30 // This interface exists so that third party products (like Silk) can patch in t
o an Obj-C method to manipulate WebKit's font caching/substitution. |
| 31 @interface WebFontCache : NSObject | 31 @interface WebFontCache : NSObject |
| 32 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des
iredTraits weight:(int)desiredWeight size:(float)size; | 32 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des
iredTraits weight:(int)desiredWeight size:(float)size; |
| 33 + (void)getTraits:(Vector<unsigned>&)traitsMasks inFamily:(NSString *)desiredFam
ily; | 33 + (void)getTraits:(Vector<unsigned>&)traitsMasks inFamily:(NSString *)desiredFam
ily; |
| 34 | 34 |
| 35 // This older version of the interface is relied upon by some clients. WebCore d
oesn't use it. | 35 // This older version of the interface is relied upon by some clients. WebCore d
oesn't use it. |
| 36 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des
iredTraits size:(float)size; | 36 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des
iredTraits size:(float)size; |
| 37 @end | 37 @end |
| OLD | NEW |