diff options
Diffstat (limited to 'WebCore/platform/mac/WebCoreSystemInterface.mm')
-rw-r--r-- | WebCore/platform/mac/WebCoreSystemInterface.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/platform/mac/WebCoreSystemInterface.mm b/WebCore/platform/mac/WebCoreSystemInterface.mm index 6fea621..9e8856d 100644 --- a/WebCore/platform/mac/WebCoreSystemInterface.mm +++ b/WebCore/platform/mac/WebCoreSystemInterface.mm @@ -41,6 +41,7 @@ OSStatus (*wkGetATSStyleGroup)(ATSUStyle, void** styleGroup); CGFontRef (*wkGetCGFontFromNSFont)(NSFont*); NSFont* (*wkGetFontInLanguageForRange)(NSFont*, NSString*, NSRange); NSFont* (*wkGetFontInLanguageForCharacter)(NSFont*, UniChar); +void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm); BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance); ATSLayoutRecord* (*wkGetGlyphVectorFirstRecord)(void* glyphVector); int (*wkGetGlyphVectorNumGlyphs)(void* glyphVector); @@ -63,6 +64,7 @@ NSDate *(*wkGetNSURLResponseLastModifiedDate)(NSURLResponse *response); BOOL (*wkGetNSURLResponseMustRevalidate)(NSURLResponse *response); void (*wkGetWheelEventDeltas)(NSEvent*, float* deltaX, float* deltaY, BOOL* continuous); OSStatus (*wkInitializeGlyphVector)(int count, void* glyphs); +NSString* (*wkPathFromFont)(NSFont*); void (*wkPopupMenu)(NSMenu*, NSPoint location, float width, NSView*, int selectedItem, NSFont*); int (*wkQTMovieDataRate)(QTMovie*); float (*wkQTMovieMaxTimeLoaded)(QTMovie*); @@ -88,8 +90,6 @@ CFReadStreamRef (*wkCreateCustomCFReadStream)(void *(*formCreate)(CFReadStreamRe void (*wkSetNSURLConnectionDefersCallbacks)(NSURLConnection *, BOOL); void (*wkSetNSURLRequestShouldContentSniff)(NSMutableURLRequest *, BOOL); id (*wkCreateNSURLConnectionDelegateProxy)(void); - -#ifdef BUILDING_ON_TIGER -void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm); BOOL (*wkSupportsMultipartXMixedReplace)(NSMutableURLRequest *); -#endif +Class (*wkNSURLProtocolClassForReqest)(NSURLRequest *); +float (*wkSecondsSinceLastInputEvent)(void); |