Title: [175961] trunk/Source
Revision
175961
Author
[email protected]
Date
2014-11-11 11:13:06 -0800 (Tue, 11 Nov 2014)

Log Message

Cleanup from r175379
https://bugs.webkit.org/show_bug.cgi?id=138616

Reviewed by Simon Fraser.

Source/WebCore:

No new tests because there is no behavior change.

* WebCore.exp.in:
* platform/ios/WebCoreSystemInterfaceIOS.mm:
* platform/mac/WebCoreSystemInterface.h:
* platform/mac/WebCoreSystemInterface.mm:

Source/WebKit/mac:

* WebCoreSupport/WebSystemInterface.mm:
(InitWebCoreSystemInterface):
* WebKit.order:

Source/WebKit2:

* WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
(InitWebCoreSystemInterface):
* mac/WebKit2.order:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (175960 => 175961)


--- trunk/Source/WebCore/ChangeLog	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebCore/ChangeLog	2014-11-11 19:13:06 UTC (rev 175961)
@@ -1,5 +1,19 @@
 2014-11-11  Myles C. Maxfield  <[email protected]>
 
+        Cleanup from r175379
+        https://bugs.webkit.org/show_bug.cgi?id=138616
+
+        Reviewed by Simon Fraser.
+
+        No new tests because there is no behavior change.
+
+        * WebCore.exp.in:
+        * platform/ios/WebCoreSystemInterfaceIOS.mm:
+        * platform/mac/WebCoreSystemInterface.h:
+        * platform/mac/WebCoreSystemInterface.mm:
+
+2014-11-11  Myles C. Maxfield  <[email protected]>
+
         Move CTFontTransformGlyphs out from WKSI
         https://bugs.webkit.org/show_bug.cgi?id=138599
 

Modified: trunk/Source/WebCore/WebCore.exp.in (175960 => 175961)


--- trunk/Source/WebCore/WebCore.exp.in	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebCore/WebCore.exp.in	2014-11-11 19:13:06 UTC (rev 175961)
@@ -2150,7 +2150,6 @@
 _wkCGContextResetClip
 _wkCGPathAddRoundedRect
 _wkCGPatternCreateWithImageAndTransform
-_wkCTRunGetInitialAdvance
 _wkCopyCFURLResponseSuggestedFilename
 _wkCopyCONNECTProxyResponse
 _wkCopyHTTPCookieStorage

Modified: trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm (175960 => 175961)


--- trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm	2014-11-11 19:13:06 UTC (rev 175961)
@@ -74,8 +74,6 @@
 WEBCORE_EXPORT bool (*wkGetVerticalGlyphsForCharacters)(CTFontRef, const UniChar[], CGGlyph[], size_t);
 WEBCORE_EXPORT CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
 
-WEBCORE_EXPORT CGSize (*wkCTRunGetInitialAdvance)(CTRunRef);
-
 WEBCORE_EXPORT CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
 
 #if !PLATFORM(IOS_SIMULATOR)

Modified: trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h (175960 => 175961)


--- trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h	2014-11-11 19:13:06 UTC (rev 175961)
@@ -238,8 +238,6 @@
 
 extern CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
 
-extern CGSize (*wkCTRunGetInitialAdvance)(CTRunRef);
-
 #if PLATFORM(COCOA) && USE(CA) && !PLATFORM(IOS_SIMULATOR)
 extern CGContextRef (*wkIOSurfaceContextCreate)(IOSurfaceRef surface, unsigned width, unsigned height, CGColorSpaceRef colorSpace);
 extern CGImageRef (*wkIOSurfaceContextCreateImage)(CGContextRef context);

Modified: trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm (175960 => 175961)


--- trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.mm	2014-11-11 19:13:06 UTC (rev 175961)
@@ -110,8 +110,6 @@
 
 CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
 
-CGSize (*wkCTRunGetInitialAdvance)(CTRunRef);
-
 CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
 
 CGContextRef (*wkIOSurfaceContextCreate)(IOSurfaceRef surface, unsigned width, unsigned height, CGColorSpaceRef colorSpace);

Modified: trunk/Source/WebKit/mac/ChangeLog (175960 => 175961)


--- trunk/Source/WebKit/mac/ChangeLog	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-11-11 19:13:06 UTC (rev 175961)
@@ -1,5 +1,16 @@
 2014-11-11  Myles C. Maxfield  <[email protected]>
 
+        Cleanup from r175379
+        https://bugs.webkit.org/show_bug.cgi?id=138616
+
+        Reviewed by Simon Fraser.
+
+        * WebCoreSupport/WebSystemInterface.mm:
+        (InitWebCoreSystemInterface):
+        * WebKit.order:
+
+2014-11-11  Myles C. Maxfield  <[email protected]>
+
         Move CTFontTransformGlyphs out from WKSI
         https://bugs.webkit.org/show_bug.cgi?id=138599
 

Modified: trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm (175960 => 175961)


--- trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm	2014-11-11 19:13:06 UTC (rev 175961)
@@ -139,7 +139,6 @@
     INIT(IOSurfaceContextCreateImage);
 #endif
     INIT(CreateCTTypesetterWithUniCharProviderAndOptions);
-    INIT(CTRunGetInitialAdvance);
 #if !PLATFORM(IOS)
     INIT(RecommendedScrollerStyle);
     INIT(ExecutableWasLinkedOnOrBeforeSnowLeopard);

Modified: trunk/Source/WebKit/mac/WebKit.order (175960 => 175961)


--- trunk/Source/WebKit/mac/WebKit.order	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebKit/mac/WebKit.order	2014-11-11 19:13:06 UTC (rev 175961)
@@ -734,7 +734,6 @@
 __ZN20WebFrameLoaderClient38dispatchDidLoadResourceFromMemoryCacheEPN7WebCore14DocumentLoaderERKNS0_15ResourceRequestERKNS0_16ResourceResponseEi
 -[WebFrame(WebInternal) _characterRangeAtPoint:]
 _WKCreateCTTypesetterWithUniCharProviderAndOptions
-_WKCTRunGetInitialAdvance
 -[WebView(WebViewEditing) selectedDOMRange]
 -[WebHTMLRepresentation attributedStringFrom:startOffset:to:endOffset:]
 -[WebHTMLView shouldDelayWindowOrderingForEvent:]

Modified: trunk/Source/WebKit2/ChangeLog (175960 => 175961)


--- trunk/Source/WebKit2/ChangeLog	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebKit2/ChangeLog	2014-11-11 19:13:06 UTC (rev 175961)
@@ -1,5 +1,16 @@
 2014-11-11  Myles C. Maxfield  <[email protected]>
 
+        Cleanup from r175379
+        https://bugs.webkit.org/show_bug.cgi?id=138616
+
+        Reviewed by Simon Fraser.
+
+        * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
+        (InitWebCoreSystemInterface):
+        * mac/WebKit2.order:
+
+2014-11-11  Myles C. Maxfield  <[email protected]>
+
         Move CTFontTransformGlyphs out from WKSI
         https://bugs.webkit.org/show_bug.cgi?id=138599
 

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm (175960 => 175961)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm	2014-11-11 19:13:06 UTC (rev 175961)
@@ -129,7 +129,6 @@
         INIT(IOSurfaceContextCreateImage);
 #endif // !PLATFORM(IOS_SIMULATOR)
         INIT(CreateCTTypesetterWithUniCharProviderAndOptions);
-        INIT(CTRunGetInitialAdvance);
 #if !PLATFORM(IOS)
         INIT(RecommendedScrollerStyle);
         INIT(ExecutableWasLinkedOnOrBeforeSnowLeopard);

Modified: trunk/Source/WebKit2/mac/WebKit2.order (175960 => 175961)


--- trunk/Source/WebKit2/mac/WebKit2.order	2014-11-11 18:59:53 UTC (rev 175960)
+++ trunk/Source/WebKit2/mac/WebKit2.order	2014-11-11 19:13:06 UTC (rev 175961)
@@ -945,7 +945,6 @@
 __ZNK6WebKit12WebPageProxy12canGoForwardEv
 __ZN6WebKit18WebBackForwardList11forwardItemEv
 _WKCreateCTLineWithUniCharProvider
-_WKCTRunGetInitialAdvance
 _WKCreateCTTypesetterWithUniCharProviderAndOptions
 _WKSetCGFontRenderingMode
 -[WKView(Private) updateLayer]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to