Title: [175017] trunk/Source/WebCore
- Revision
- 175017
- Author
- [email protected]
- Date
- 2014-10-21 19:56:54 -0700 (Tue, 21 Oct 2014)
Log Message
Try to fix the iOS build after r175013.
* platform/graphics/ios/FontCacheIOS.mm:
(WebCore::FontCache::createFontPlatformData):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (175016 => 175017)
--- trunk/Source/WebCore/ChangeLog 2014-10-22 02:53:26 UTC (rev 175016)
+++ trunk/Source/WebCore/ChangeLog 2014-10-22 02:56:54 UTC (rev 175017)
@@ -1,3 +1,10 @@
+2014-10-21 Tim Horton <[email protected]>
+
+ Try to fix the iOS build after r175013.
+
+ * platform/graphics/ios/FontCacheIOS.mm:
+ (WebCore::FontCache::createFontPlatformData):
+
2014-10-21 Gyuyoung Kim <[email protected]>
Use std::unique_ptr | std::make_unique in FontCacheFoo
Modified: trunk/Source/WebCore/platform/graphics/ios/FontCacheIOS.mm (175016 => 175017)
--- trunk/Source/WebCore/platform/graphics/ios/FontCacheIOS.mm 2014-10-22 02:53:26 UTC (rev 175016)
+++ trunk/Source/WebCore/platform/graphics/ios/FontCacheIOS.mm 2014-10-22 02:56:54 UTC (rev 175017)
@@ -654,7 +654,7 @@
bool syntheticBold = (traits & kCTFontTraitBold) && !(actualTraits & kCTFontTraitBold) && !isAppleColorEmoji;
bool syntheticOblique = (traits & kCTFontTraitItalic) && !(actualTraits & kCTFontTraitItalic) && !isAppleColorEmoji;
- auto* result = std::make_unique<FontPlatformData>(ctFont.get(), size, fontDescription.usePrinterFont(), syntheticBold, syntheticOblique, fontDescription.orientation(), fontDescription.widthVariant());
+ auto result = std::make_unique<FontPlatformData>(ctFont.get(), size, fontDescription.usePrinterFont(), syntheticBold, syntheticOblique, fontDescription.orientation(), fontDescription.widthVariant());
if (isAppleColorEmoji)
result->m_isEmoji = true;
return adoptPtr(result);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes