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:
Shannon Booth 2023-08-26 16:30:02 +12:00 committed by Andrew Kaster
commit 901220c588
Notes: sideshowbarker 2024-07-17 00:16:31 +09:00
11 changed files with 39 additions and 35 deletions

View file

@ -26,10 +26,10 @@ public:
Function<void(Web::Cookie::Cookie)> on_update_cookie;
void set_local_storage_entries(OrderedHashMap<DeprecatedString, DeprecatedString> entries);
void set_local_storage_entries(OrderedHashMap<String, String> entries);
void clear_local_storage_entries();
void set_session_storage_entries(OrderedHashMap<DeprecatedString, DeprecatedString> entries);
void set_session_storage_entries(OrderedHashMap<String, String> entries);
void clear_session_storage_entries();
private: