mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-23 01:38:56 +00:00
LibWeb: Port Storage interface from DeprecatedString to String
Which ends up bubbling all the way up to the Browser storage model.
This commit is contained in:
parent
6f85be501d
commit
901220c588
Notes:
sideshowbarker
2024-07-17 00:16:31 +09:00
Author: https://github.com/shannonbooth
Commit: 901220c588
Pull-request: https://github.com/SerenityOS/serenity/pull/20799
Reviewed-by: https://github.com/ADKaster ✅
11 changed files with 39 additions and 35 deletions
|
@ -76,8 +76,8 @@ public:
|
|||
Function<void()> on_dump_cookies;
|
||||
Function<void(Web::Cookie::Cookie)> on_update_cookie;
|
||||
Function<Vector<Web::Cookie::Cookie>()> on_get_cookies_entries;
|
||||
Function<OrderedHashMap<DeprecatedString, DeprecatedString>()> on_get_local_storage_entries;
|
||||
Function<OrderedHashMap<DeprecatedString, DeprecatedString>()> on_get_session_storage_entries;
|
||||
Function<OrderedHashMap<String, String>()> on_get_local_storage_entries;
|
||||
Function<OrderedHashMap<String, String>()> on_get_session_storage_entries;
|
||||
|
||||
void enable_webdriver_mode();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue