Title: [196737] trunk/Source/WebCore
Revision
196737
Author
[email protected]
Date
2016-02-17 18:04:40 -0800 (Wed, 17 Feb 2016)

Log Message

Unreviewed, rolling out r196712.
https://bugs.webkit.org/show_bug.cgi?id=154371

This change caused 5 API test failures on ios-simulator
(Requested by ryanhaddad on #webkit).

Reverted changeset:

"[iOS] Purge GraphicsServices font cache on memory warning."
https://bugs.webkit.org/show_bug.cgi?id=154343
http://trac.webkit.org/changeset/196712

Patch by Commit Queue <[email protected]> on 2016-02-17

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (196736 => 196737)


--- trunk/Source/WebCore/ChangeLog	2016-02-18 01:38:40 UTC (rev 196736)
+++ trunk/Source/WebCore/ChangeLog	2016-02-18 02:04:40 UTC (rev 196737)
@@ -1,3 +1,17 @@
+2016-02-17  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r196712.
+        https://bugs.webkit.org/show_bug.cgi?id=154371
+
+        This change caused 5 API test failures on ios-simulator
+        (Requested by ryanhaddad on #webkit).
+
+        Reverted changeset:
+
+        "[iOS] Purge GraphicsServices font cache on memory warning."
+        https://bugs.webkit.org/show_bug.cgi?id=154343
+        http://trac.webkit.org/changeset/196712
+
 2016-02-17  Brady Eidson  <[email protected]>
 
         Modern IDB: More Encoder/Decoder/Messaging scaffolding for WK2 IPC.

Modified: trunk/Source/WebCore/platform/cocoa/MemoryPressureHandlerCocoa.mm (196736 => 196737)


--- trunk/Source/WebCore/platform/cocoa/MemoryPressureHandlerCocoa.mm	2016-02-18 01:38:40 UTC (rev 196736)
+++ trunk/Source/WebCore/platform/cocoa/MemoryPressureHandlerCocoa.mm	2016-02-18 02:04:40 UTC (rev 196737)
@@ -40,7 +40,6 @@
 #import <wtf/CurrentTime.h>
 
 #if PLATFORM(IOS)
-#import "GraphicsServicesSPI.h"
 #import "SystemMemory.h"
 #import "WebCoreThread.h"
 #endif
@@ -69,13 +68,6 @@
     }
 #endif
 
-#if PLATFORM(IOS)
-    {
-        ReliefLogger log("Purging GraphicsServices font cache");
-        GSFontPurgeFontCache();
-    }
-#endif
-
     if (critical == Critical::Yes && !isUnderMemoryPressure()) {
         // libcache listens to OS memory notifications, but for process suspension
         // or memory pressure simulation, we need to prod it manually:

Modified: trunk/Source/WebCore/platform/spi/ios/GraphicsServicesSPI.h (196736 => 196737)


--- trunk/Source/WebCore/platform/spi/ios/GraphicsServicesSPI.h	2016-02-18 01:38:40 UTC (rev 196736)
+++ trunk/Source/WebCore/platform/spi/ios/GraphicsServicesSPI.h	2016-02-18 02:04:40 UTC (rev 196737)
@@ -41,7 +41,6 @@
 void GSInitialize(void);
 uint64_t GSCurrentEventTimestamp(void);
 CFStringRef GSSystemRootDirectory(void);
-void GSFontPurgeFontCache(void);
 
 WTF_EXTERN_C_END
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to