Title: [178523] trunk/Source/WebCore
Revision
178523
Author
[email protected]
Date
2015-01-15 12:16:38 -0800 (Thu, 15 Jan 2015)

Log Message

[Win] Unreviewed Windows build fix.

More missing Font->FontCascade changes.

* platform/win/WebCoreTextRenderer.cpp:
(WebCore::WebCoreSetAlwaysUsesComplexTextCodePath):
(WebCore::WebCoreAlwaysUsesComplexTextCodePath):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (178522 => 178523)


--- trunk/Source/WebCore/ChangeLog	2015-01-15 20:07:47 UTC (rev 178522)
+++ trunk/Source/WebCore/ChangeLog	2015-01-15 20:16:38 UTC (rev 178523)
@@ -1,3 +1,13 @@
+2015-01-15  Brent Fulgham  <[email protected]>
+
+        [Win] Unreviewed Windows build fix.
+
+        More missing Font->FontCascade changes.
+
+        * platform/win/WebCoreTextRenderer.cpp:
+        (WebCore::WebCoreSetAlwaysUsesComplexTextCodePath):
+        (WebCore::WebCoreAlwaysUsesComplexTextCodePath):
+
 2015-01-15  Antti Koivisto  <[email protected]>
 
         REGRESSION(r178133): Membuster regressed ~4%

Modified: trunk/Source/WebCore/platform/win/WebCoreTextRenderer.cpp (178522 => 178523)


--- trunk/Source/WebCore/platform/win/WebCoreTextRenderer.cpp	2015-01-15 20:07:47 UTC (rev 178522)
+++ trunk/Source/WebCore/platform/win/WebCoreTextRenderer.cpp	2015-01-15 20:16:38 UTC (rev 178523)
@@ -106,12 +106,12 @@
 
 void WebCoreSetAlwaysUsesComplexTextCodePath(bool complex)
 {
-    Font::setCodePath(complex ? FontCascade::Complex : FontCascade::Auto);
+    FontCascade::setCodePath(complex ? FontCascade::Complex : FontCascade::Auto);
 }
 
 bool WebCoreAlwaysUsesComplexTextCodePath()
 {
-    return Font::codePath() == FontCascade::Complex;
+    return FontCascade::codePath() == FontCascade::Complex;
 }
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to