Changeset 175961 in webkit
- Timestamp:
- Nov 11, 2014, 11:13:06 AM (11 years ago)
- Location:
- trunk/Source
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r175960 r175961 1 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 3 Cleanup from r175379 4 https://bugs.webkit.org/show_bug.cgi?id=138616 5 6 Reviewed by Simon Fraser. 7 8 No new tests because there is no behavior change. 9 10 * WebCore.exp.in: 11 * platform/ios/WebCoreSystemInterfaceIOS.mm: 12 * platform/mac/WebCoreSystemInterface.h: 13 * platform/mac/WebCoreSystemInterface.mm: 14 1 15 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 16 -
trunk/Source/WebCore/WebCore.exp.in
r175960 r175961 2151 2151 _wkCGPathAddRoundedRect 2152 2152 _wkCGPatternCreateWithImageAndTransform 2153 _wkCTRunGetInitialAdvance2154 2153 _wkCopyCFURLResponseSuggestedFilename 2155 2154 _wkCopyCONNECTProxyResponse -
trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm
r175960 r175961 75 75 WEBCORE_EXPORT CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*); 76 76 77 WEBCORE_EXPORT CGSize (*wkCTRunGetInitialAdvance)(CTRunRef);78 79 77 WEBCORE_EXPORT CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options); 80 78 -
trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h
r175960 r175961 239 239 extern CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options); 240 240 241 extern CGSize (*wkCTRunGetInitialAdvance)(CTRunRef);242 243 241 #if PLATFORM(COCOA) && USE(CA) && !PLATFORM(IOS_SIMULATOR) 244 242 extern CGContextRef (*wkIOSurfaceContextCreate)(IOSurfaceRef surface, unsigned width, unsigned height, CGColorSpaceRef colorSpace); -
trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm
r175960 r175961 111 111 CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*); 112 112 113 CGSize (*wkCTRunGetInitialAdvance)(CTRunRef);114 115 113 CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options); 116 114 -
trunk/Source/WebKit/mac/ChangeLog
r175960 r175961 1 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 3 Cleanup from r175379 4 https://bugs.webkit.org/show_bug.cgi?id=138616 5 6 Reviewed by Simon Fraser. 7 8 * WebCoreSupport/WebSystemInterface.mm: 9 (InitWebCoreSystemInterface): 10 * WebKit.order: 11 1 12 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 13 -
trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm
r175960 r175961 140 140 #endif 141 141 INIT(CreateCTTypesetterWithUniCharProviderAndOptions); 142 INIT(CTRunGetInitialAdvance);143 142 #if !PLATFORM(IOS) 144 143 INIT(RecommendedScrollerStyle); -
trunk/Source/WebKit/mac/WebKit.order
r175960 r175961 735 735 -[WebFrame(WebInternal) _characterRangeAtPoint:] 736 736 _WKCreateCTTypesetterWithUniCharProviderAndOptions 737 _WKCTRunGetInitialAdvance738 737 -[WebView(WebViewEditing) selectedDOMRange] 739 738 -[WebHTMLRepresentation attributedStringFrom:startOffset:to:endOffset:] -
trunk/Source/WebKit2/ChangeLog
r175960 r175961 1 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 3 Cleanup from r175379 4 https://bugs.webkit.org/show_bug.cgi?id=138616 5 6 Reviewed by Simon Fraser. 7 8 * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm: 9 (InitWebCoreSystemInterface): 10 * mac/WebKit2.order: 11 1 12 2014-11-11 Myles C. Maxfield <mmaxfield@apple.com> 2 13 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm
r175960 r175961 130 130 #endif // !PLATFORM(IOS_SIMULATOR) 131 131 INIT(CreateCTTypesetterWithUniCharProviderAndOptions); 132 INIT(CTRunGetInitialAdvance);133 132 #if !PLATFORM(IOS) 134 133 INIT(RecommendedScrollerStyle); -
trunk/Source/WebKit2/mac/WebKit2.order
r175960 r175961 946 946 __ZN6WebKit18WebBackForwardList11forwardItemEv 947 947 _WKCreateCTLineWithUniCharProvider 948 _WKCTRunGetInitialAdvance949 948 _WKCreateCTTypesetterWithUniCharProviderAndOptions 950 949 _WKSetCGFontRenderingMode
Note:
See TracChangeset
for help on using the changeset viewer.