Title: [274827] trunk/Source/WebCore
Revision
274827
Author
[email protected]
Date
2021-03-22 17:32:07 -0700 (Mon, 22 Mar 2021)

Log Message

Unreviewed build fix for AppleWin after r274791
https://bugs.webkit.org/show_bug.cgi?id=223500
<rdar://problem/75706741>

* platform/graphics/win/FontCustomPlatformData.cpp:
(WebCore::createFontCustomPlatformData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (274826 => 274827)


--- trunk/Source/WebCore/ChangeLog	2021-03-23 00:22:00 UTC (rev 274826)
+++ trunk/Source/WebCore/ChangeLog	2021-03-23 00:32:07 UTC (rev 274827)
@@ -1,3 +1,12 @@
+2021-03-22  Fujii Hironori  <[email protected]>
+
+        Unreviewed build fix for AppleWin after r274791
+        https://bugs.webkit.org/show_bug.cgi?id=223500
+        <rdar://problem/75706741>
+
+        * platform/graphics/win/FontCustomPlatformData.cpp:
+        (WebCore::createFontCustomPlatformData):
+
 2021-03-22  Chris Fleizach  <[email protected]>
 
         AX: textRectsFromMarkers always fails

Modified: trunk/Source/WebCore/platform/graphics/win/FontCustomPlatformData.cpp (274826 => 274827)


--- trunk/Source/WebCore/platform/graphics/win/FontCustomPlatformData.cpp	2021-03-23 00:22:00 UTC (rev 274826)
+++ trunk/Source/WebCore/platform/graphics/win/FontCustomPlatformData.cpp	2021-03-23 00:32:07 UTC (rev 274827)
@@ -111,7 +111,8 @@
     fontReference = renameAndActivateFont(buffer, fontName);
     if (!fontReference)
         return nullptr;
-    auto result = makeUnique<FontCustomPlatformData>(fontReference, fontName, { });
+    FontPlatformData::CreationData creationData = { buffer, itemInCollection };
+    auto result = makeUnique<FontCustomPlatformData>(fontReference, fontName, WTFMove(creationData));
 #if USE(CORE_TEXT)
     result->fontDescriptor = adoptCF(CTFontManagerCreateFontDescriptorFromData(buffer.createCFData().get()));
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to