Title: [240177] trunk/Source/WebCore
Revision
240177
Author
dba...@webkit.org
Date
2019-01-18 14:55:56 -0800 (Fri, 18 Jan 2019)

Log Message

Attempt to fix the iOS build following <https://trac.webkit.org/changeset/240174>
(https://bugs.webkit.org/show_bug.cgi?id=193583)

Namespace qualify call to getUIColorClass().

* rendering/RenderThemeIOS.mm:
(WebCore::RenderThemeIOS::platformFocusRingColor const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240176 => 240177)


--- trunk/Source/WebCore/ChangeLog	2019-01-18 22:53:49 UTC (rev 240176)
+++ trunk/Source/WebCore/ChangeLog	2019-01-18 22:55:56 UTC (rev 240177)
@@ -1,3 +1,13 @@
+2019-01-18  Daniel Bates  <daba...@apple.com>
+
+        Attempt to fix the iOS build following <https://trac.webkit.org/changeset/240174>
+        (https://bugs.webkit.org/show_bug.cgi?id=193583)
+
+        Namespace qualify call to getUIColorClass().
+
+        * rendering/RenderThemeIOS.mm:
+        (WebCore::RenderThemeIOS::platformFocusRingColor const):
+
 2019-01-18  Jer Noble  <jer.no...@apple.com>
 
         SDK_VARIANT build destinations should be separate from non-SDK_VARIANT builds

Modified: trunk/Source/WebCore/rendering/RenderThemeIOS.mm (240176 => 240177)


--- trunk/Source/WebCore/rendering/RenderThemeIOS.mm	2019-01-18 22:53:49 UTC (rev 240176)
+++ trunk/Source/WebCore/rendering/RenderThemeIOS.mm	2019-01-18 22:55:56 UTC (rev 240177)
@@ -1125,7 +1125,7 @@
 
 Color RenderThemeIOS::platformFocusRingColor(OptionSet<StyleColor::Options>) const
 {
-    return colorFromUIColor([getUIColorClass() keyboardFocusIndicatorColor]);
+    return colorFromUIColor([PAL::getUIColorClass() keyboardFocusIndicatorColor]);
 }
 
 bool RenderThemeIOS::shouldHaveSpinButton(const HTMLInputElement&) const
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to