Changeset 170341 in webkit
- Timestamp:
- Jun 23, 2014, 6:23:08 PM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebContext.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r170338 r170341 1 2014-06-23 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/17413374> [iOS] Application cache size per origin is not limited 4 https://bugs.webkit.org/show_bug.cgi?id=134229 5 6 Reviewed by Anders Carlsson. 7 8 * UIProcess/WebContext.cpp: 9 (WebKit::WebContext::createNewWebProcess): Set the default quota per origin to the same 10 value it is set in Legacy WebKit. 11 1 12 2014-06-23 Ryuan Choi <ryuan.choi@samsung.com> 2 13 -
trunk/Source/WebKit2/UIProcess/WebContext.cpp
r170313 r170341 60 60 #include "WebProcessProxy.h" 61 61 #include "WebResourceCacheManagerProxy.h" 62 #include <WebCore/ApplicationCacheStorage.h> 62 63 #include <WebCore/Language.h> 63 64 #include <WebCore/LinkHash.h> … … 644 645 process->send(Messages::WebProcess::SetQOS(webProcessLatencyQOS(), webProcessThroughputQOS()), 0); 645 646 #endif 647 #if PLATFORM(IOS) 648 cacheStorage().setDefaultOriginQuota(25ULL * 1024 * 1024); 649 #endif 646 650 647 651 if (WebPreferences::anyPagesAreUsingPrivateBrowsing())
Note:
See TracChangeset
for help on using the changeset viewer.