Title: [119899] trunk/Source/WebCore
Revision
119899
Author
[email protected]
Date
2012-06-09 04:25:26 -0700 (Sat, 09 Jun 2012)

Log Message

Web Inspector: Increase size limits for resource content cached in InspectorResourceAgent.
https://bugs.webkit.org/show_bug.cgi?id=88674

Reviewed by Pavel Feldman.

* inspector/NetworkResourcesData.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119898 => 119899)


--- trunk/Source/WebCore/ChangeLog	2012-06-09 11:23:50 UTC (rev 119898)
+++ trunk/Source/WebCore/ChangeLog	2012-06-09 11:25:26 UTC (rev 119899)
@@ -1,3 +1,12 @@
+2012-06-08  Vsevolod Vlasov  <[email protected]>
+
+        Web Inspector: Increase size limits for resource content cached in InspectorResourceAgent.
+        https://bugs.webkit.org/show_bug.cgi?id=88674
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/NetworkResourcesData.cpp:
+
 2012-05-25  Vsevolod Vlasov  <[email protected]>
 
         Web Inspector: Limit DebuggerAgent.Location use to DebuggerModel only, introduce WebInspector.RawLocation to be used elsewhere.

Modified: trunk/Source/WebCore/inspector/NetworkResourcesData.cpp (119898 => 119899)


--- trunk/Source/WebCore/inspector/NetworkResourcesData.cpp	2012-06-09 11:23:50 UTC (rev 119898)
+++ trunk/Source/WebCore/inspector/NetworkResourcesData.cpp	2012-06-09 11:25:26 UTC (rev 119899)
@@ -37,11 +37,11 @@
 #include "TextResourceDecoder.h"
 
 namespace {
+// 100MB
+static int maximumResourcesContentSize = 100 * 1000 * 1000;
+
 // 10MB
-static int maximumResourcesContentSize = 10 * 1000 * 1000;
-
-// 1MB
-static int maximumSingleResourceContentSize = 1000 * 1000;
+static int maximumSingleResourceContentSize = 10 * 1000 * 1000;
 }
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to