Title: [183292] trunk/Source/WebCore
- Revision
- 183292
- Author
- [email protected]
- Date
- 2015-04-24 16:51:39 -0700 (Fri, 24 Apr 2015)
Log Message
Fix iOS EWS builds after updating to iOS 8.3 SDK
* platform/spi/cocoa/CoreTextSPI.h:
* rendering/RenderThemeIOS.mm:
(WebCore::RenderThemeIOS::updateCachedSystemFontDescription):
- Update __IPHONE_OS_VERSION_MIN_REQUIRED for these constants.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (183291 => 183292)
--- trunk/Source/WebCore/ChangeLog 2015-04-24 23:29:32 UTC (rev 183291)
+++ trunk/Source/WebCore/ChangeLog 2015-04-24 23:51:39 UTC (rev 183292)
@@ -1,3 +1,12 @@
+2015-04-24 David Kilzer <[email protected]>
+
+ Fix iOS EWS builds after updating to iOS 8.3 SDK
+
+ * platform/spi/cocoa/CoreTextSPI.h:
+ * rendering/RenderThemeIOS.mm:
+ (WebCore::RenderThemeIOS::updateCachedSystemFontDescription):
+ - Update __IPHONE_OS_VERSION_MIN_REQUIRED for these constants.
+
2015-04-24 Jer Noble <[email protected]>
Unreviewed iOS build fix; add declarations to AVKitSPI.h
Modified: trunk/Source/WebCore/platform/spi/cocoa/CoreTextSPI.h (183291 => 183292)
--- trunk/Source/WebCore/platform/spi/cocoa/CoreTextSPI.h 2015-04-24 23:29:32 UTC (rev 183291)
+++ trunk/Source/WebCore/platform/spi/cocoa/CoreTextSPI.h 2015-04-24 23:51:39 UTC (rev 183292)
@@ -104,7 +104,7 @@
extern const CFStringRef kCTFontDescriptorTextStyleEmphasized;
#endif
-#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED > 80200
+#if PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 90000
extern const CFStringRef kCTUIFontTextStyleTitle1;
extern const CFStringRef kCTUIFontTextStyleTitle2;
extern const CFStringRef kCTUIFontTextStyleTitle3;
Modified: trunk/Source/WebCore/rendering/RenderThemeIOS.mm (183291 => 183292)
--- trunk/Source/WebCore/rendering/RenderThemeIOS.mm 2015-04-24 23:29:32 UTC (rev 183291)
+++ trunk/Source/WebCore/rendering/RenderThemeIOS.mm 2015-04-24 23:51:39 UTC (rev 183292)
@@ -1201,7 +1201,7 @@
textStyle = kCTUIFontTextStyleBody;
fontDescriptor = adoptCF(CTFontDescriptorCreateWithTextStyle(textStyle, contentSizeCategory(), 0));
break;
-#if __IPHONE_OS_VERSION_MIN_REQUIRED > 80200
+#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 90000
case CSSValueAppleSystemTitle1:
textStyle = kCTUIFontTextStyleTitle1;
fontDescriptor = adoptCF(CTFontDescriptorCreateWithTextStyle(textStyle, contentSizeCategory(), 0));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes