WebKit Bugzilla
Attachment 370422 Details for
Bug 198133
: Set default WebsiteDataStore storage quota based on StorageQuotaManager
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198133-20190522105926.patch (text/plain), 1.83 KB, created by
youenn fablet
on 2019-05-22 10:59:27 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
youenn fablet
Created:
2019-05-22 10:59:27 PDT
Size:
1.83 KB
patch
obsolete
>Subversion Revision: 245568 >diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog >index 6fe9dd765de341ff2b7d10295cb318754a5bdc80..da3c2437a7f353bd45220dfda5ad597b4ca2098f 100644 >--- a/Source/WebKit/ChangeLog >+++ b/Source/WebKit/ChangeLog >@@ -1,3 +1,13 @@ >+2019-05-22 Youenn Fablet <youenn@apple.com> >+ >+ Set default WebsiteDataStore storage quota based on StorageQuotaManager >+ https://bugs.webkit.org/show_bug.cgi?id=198133 >+ <rdar://problem/51031436> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h: >+ > 2019-05-21 Youenn Fablet <youenn@apple.com> > > Implement Feature policy self/none/* parsing >diff --git a/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h b/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h >index 9cc8a5079bc0afea42919706b062128b57fcb20b..df17adc5e4d32d021558e6494a3e369787f59f70 100644 >--- a/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h >+++ b/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h >@@ -26,6 +26,7 @@ > #pragma once > > #include "APIObject.h" >+#include <WebCore/StorageQuotaManager.h> > #include <wtf/URL.h> > #include <wtf/text/WTFString.h> > >@@ -97,13 +98,11 @@ public: > const URL& httpsProxy() const { return m_httpsProxy; } > void setHTTPSProxy(URL&& proxy) { m_httpsProxy = WTFMove(proxy); } > >- constexpr static uint64_t defaultPerOriginStorageQuota = 50 * 1024 * 1024; >- > private: > WebsiteDataStoreConfiguration(); > > String m_cacheStorageDirectory; >- uint64_t m_perOriginStorageQuota { defaultPerOriginStorageQuota }; >+ uint64_t m_perOriginStorageQuota { WebCore::StorageQuotaManager::defaultQuota() }; > String m_networkCacheDirectory; > String m_applicationCacheDirectory; > String m_applicationCacheFlatFileSubdirectoryName;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 198133
:
370422
|
370464