webengine/osswebengine/WebCore/loader/Cache.cpp
branchRCL_3
changeset 93 79859ed3eea9
parent 91 30342f40acbf
child 94 919f36ff910f
--- a/webengine/osswebengine/WebCore/loader/Cache.cpp	Thu Aug 19 10:58:56 2010 +0300
+++ b/webengine/osswebengine/WebCore/loader/Cache.cpp	Tue Aug 31 16:17:46 2010 +0300
@@ -38,7 +38,7 @@
 
 namespace WebCore {
 
-static const int cDefaultCacheCapacity = 4*1024*1024; // 4MB
+static const int cDefaultCacheCapacity = 8192 * 1024;
 
 static const double cMinDelayBeforeLiveDecodedPrune = 1; // Seconds.
 static const float cTargetPrunePercentage = .95f; // Percentage of capacity toward which we prune, to avoid immediately pruning again.
@@ -106,7 +106,7 @@
 {
     // FIXME: Do we really need to special-case an empty URL?
     // Would it be better to just go on with the cache code and let it fail later?
-    if (url.isEmpty() || url.url().lower() == "about:blank")
+    if (url.isEmpty())
         return 0;
     
     // Look up the resource in our map.