Title: [178673] trunk/Source/WebCore
Revision
178673
Author
an...@apple.com
Date
2015-01-19 14:02:48 -0800 (Mon, 19 Jan 2015)

Log Message

REGRESSION(r178250): ~2% PLT regression
https://bugs.webkit.org/show_bug.cgi?id=140640

Reviewed by Andreas Kling.

* platform/graphics/FontCache.cpp:

The patch accidentally contained a change to reduce the size of the cache (to verify that purgin works).
Restore it back to the original value.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (178672 => 178673)


--- trunk/Source/WebCore/ChangeLog	2015-01-19 21:58:05 UTC (rev 178672)
+++ trunk/Source/WebCore/ChangeLog	2015-01-19 22:02:48 UTC (rev 178673)
@@ -1,3 +1,15 @@
+2015-01-19  Antti Koivisto  <an...@apple.com>
+
+        REGRESSION(r178250): ~2% PLT regression
+        https://bugs.webkit.org/show_bug.cgi?id=140640
+
+        Reviewed by Andreas Kling.
+
+        * platform/graphics/FontCache.cpp:
+
+        The patch accidentally contained a change to reduce the size of the cache (to verify that purgin works).
+        Restore it back to the original value.
+
 2015-01-19  pe...@outlook.com  <pe...@outlook.com>
 
         [WinCairo][Video] Windows Media Foundation implementation is not completed.

Modified: trunk/Source/WebCore/platform/graphics/FontCache.cpp (178672 => 178673)


--- trunk/Source/WebCore/platform/graphics/FontCache.cpp	2015-01-19 21:58:05 UTC (rev 178672)
+++ trunk/Source/WebCore/platform/graphics/FontCache.cpp	2015-01-19 22:02:48 UTC (rev 178673)
@@ -372,7 +372,7 @@
 const int cMaxInactiveFontData = 120;
 const int cTargetInactiveFontData = 100;
 #else
-const int cMaxInactiveFontData = 5;
+const int cMaxInactiveFontData = 225;
 const int cTargetInactiveFontData = 200;
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to