You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-09-30 21:28:55 +02:00
Updated TCefClearDataStorageTypes values
Some checks failed
Make / build (ubuntu-latest) (push) Has been cancelled
Some checks failed
Make / build (ubuntu-latest) (push) Has been cancelled
Improved documentation for TCefClearDataStorageTypes Improved documentation for TChromiumCore.ClearDataForOrigin
This commit is contained in:
Binary file not shown.
@@ -9255,6 +9255,12 @@ Custom</p>
|
||||
<tr><td colspan="2">
|
||||
<p>
|
||||
This procedure calls the Storage.clearDataForOrigin DevTools method to clear the storage data for a given origin. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin">https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin</a>">See the documentation for the Storage.clearDataForOrigin DevTools method.)
|
||||
|
||||
<p><see href="<a href="https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType">https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType</a>">See the documentation for the Storage.StorageType type.)</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
|
@@ -4724,11 +4724,13 @@ Ranges:
|
||||
<tr><td colspan="1">
|
||||
<p>
|
||||
Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin. </p>
|
||||
<p>
|
||||
|
||||
|
||||
<p><see href="<a href="https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType">https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType</a>">See the documentation for the Storage.StorageType type.)</p>
|
||||
<h6 class="description_section">Values</h6>
|
||||
<ul>
|
||||
<li>
|
||||
<span id="cdstAppCache">cdstAppCache</span></li>
|
||||
<li>
|
||||
<span id="cdstCookies">cdstCookies</span></li>
|
||||
<li>
|
||||
<span id="cdstFileSystems">cdstFileSystems</span></li>
|
||||
@@ -4745,7 +4747,15 @@ Ranges:
|
||||
<li>
|
||||
<span id="cdstCacheStorage">cdstCacheStorage</span></li>
|
||||
<li>
|
||||
<span id="cdstInterestGroups">cdstInterestGroups</span></li>
|
||||
<li>
|
||||
<span id="cdstSharedStorage">cdstSharedStorage</span></li>
|
||||
<li>
|
||||
<span id="cdstStorageBuckets">cdstStorageBuckets</span></li>
|
||||
<li>
|
||||
<span id="cdstAll">cdstAll</span></li>
|
||||
<li>
|
||||
<span id="cdstOther">cdstOther</span></li>
|
||||
</ul>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
@@ -1136,6 +1136,10 @@ type
|
||||
/// <summary>
|
||||
/// This procedure calls the Storage.clearDataForOrigin DevTools method to clear the storage data for a given origin.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// <para><see href="https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin">See the documentation for the Storage.clearDataForOrigin DevTools method.</see></para>
|
||||
/// <para><see href="https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType">See the documentation for the Storage.StorageType type.</see></para>
|
||||
/// </remarks>
|
||||
procedure ClearDataForOrigin(const aOrigin : ustring; aStorageTypes : TCefClearDataStorageTypes = cdstAll);
|
||||
/// <summary>
|
||||
/// This procedure calls the Network.clearBrowserCache DevTools method to clear the cache data.
|
||||
@@ -6534,7 +6538,6 @@ begin
|
||||
TempParams.SetString('origin', aOrigin);
|
||||
|
||||
case aStorageTypes of
|
||||
cdstAppCache : TempParams.SetString('storageTypes', 'appcache');
|
||||
cdstCookies : TempParams.SetString('storageTypes', 'cookies');
|
||||
cdstFileSystems : TempParams.SetString('storageTypes', 'file_systems');
|
||||
cdstIndexeddb : TempParams.SetString('storageTypes', 'indexeddb');
|
||||
@@ -6543,6 +6546,10 @@ begin
|
||||
cdstWebsql : TempParams.SetString('storageTypes', 'websql');
|
||||
cdstServiceWorkers : TempParams.SetString('storageTypes', 'service_workers');
|
||||
cdstCacheStorage : TempParams.SetString('storageTypes', 'cache_storage');
|
||||
cdstInterestGroups : TempParams.SetString('storageTypes', 'interest_groups');
|
||||
cdstSharedStorage : TempParams.SetString('storageTypes', 'shared_storage');
|
||||
cdstStorageBuckets : TempParams.SetString('storageTypes', 'storage_buckets');
|
||||
cdstOther : TempParams.SetString('storageTypes', 'other');
|
||||
else TempParams.SetString('storageTypes', 'all');
|
||||
end;
|
||||
|
||||
|
@@ -1355,8 +1355,10 @@ type
|
||||
/// <summary>
|
||||
/// Storage types used by the Storage.clearDataForOrigin DevTools method in TChromiumCore.ClearDataForOrigin.
|
||||
/// </summary>
|
||||
TCefClearDataStorageTypes = (cdstAppCache,
|
||||
cdstCookies,
|
||||
/// <remarks>
|
||||
/// <para><see href="https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType">See the documentation for the Storage.StorageType type.</see></para>
|
||||
/// </remarks>
|
||||
TCefClearDataStorageTypes = (cdstCookies,
|
||||
cdstFileSystems,
|
||||
cdstIndexeddb,
|
||||
cdstLocalStorage,
|
||||
@@ -1364,7 +1366,11 @@ type
|
||||
cdstWebsql,
|
||||
cdstServiceWorkers,
|
||||
cdstCacheStorage,
|
||||
cdstAll);
|
||||
cdstInterestGroups,
|
||||
cdstSharedStorage,
|
||||
cdstStorageBuckets,
|
||||
cdstAll,
|
||||
cdstOther);
|
||||
|
||||
/// <summary>
|
||||
/// Autoplay policy types used by TCefApplicationCore.AutoplayPolicy. See the --autoplay-policy switch.
|
||||
|
@@ -2,7 +2,7 @@
|
||||
"UpdateLazPackages" : [
|
||||
{
|
||||
"ForceNotify" : true,
|
||||
"InternalVersion" : 792,
|
||||
"InternalVersion" : 793,
|
||||
"Name" : "cef4delphi_lazarus.lpk",
|
||||
"Version" : "140.1.14"
|
||||
}
|
||||
|
Reference in New Issue
Block a user