Title: [179360] trunk/Source/WebCore
Revision
179360
Author
[email protected]
Date
2015-01-29 13:32:32 -0800 (Thu, 29 Jan 2015)

Log Message

Fix the iOS build after r179347

* loader/FrameLoader.cpp:
(WebCore::FrameLoader::commitProvisionalLoad):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (179359 => 179360)


--- trunk/Source/WebCore/ChangeLog	2015-01-29 20:56:16 UTC (rev 179359)
+++ trunk/Source/WebCore/ChangeLog	2015-01-29 21:32:32 UTC (rev 179360)
@@ -1,3 +1,10 @@
+2015-01-29  Tim Horton  <[email protected]>
+
+        Fix the iOS build after r179347
+
+        * loader/FrameLoader.cpp:
+        (WebCore::FrameLoader::commitProvisionalLoad):
+
 2015-01-29  Andreas Kling  <[email protected]>
 
         _javascript_ bindings constructors should take Ref<ImplType>&&.

Modified: trunk/Source/WebCore/loader/FrameLoader.cpp (179359 => 179360)


--- trunk/Source/WebCore/loader/FrameLoader.cpp	2015-01-29 20:56:16 UTC (rev 179359)
+++ trunk/Source/WebCore/loader/FrameLoader.cpp	2015-01-29 21:32:32 UTC (rev 179360)
@@ -1761,7 +1761,7 @@
             PageCache::shared().pruneToSizeNow(0, PruningReason::MemoryPressure);
         } else if (systemMemoryLevel() <= memoryLevelThresholdToPrunePageCache) {
             LOG(MemoryPressure, "Pruning page cache because system memory level is %d at: %s", systemMemoryLevel(), __PRETTY_FUNCTION__);
-            LOG(PageCache, "Pruning page cache to %d due to low memory (level %d less or equal to %d threshold)", PageCache::shared().capacity() / 2, systemMemoryLevel(), memoryLevelThresholdToPrunePageCache);
+            LOG(PageCache, "Pruning page cache to %d due to low memory (level %d less or equal to %d threshold)", PageCache::shared().maxSize() / 2, systemMemoryLevel(), memoryLevelThresholdToPrunePageCache);
             PageCache::shared().pruneToSizeNow(PageCache::shared().maxSize() / 2, PruningReason::MemoryPressure);
         }
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to