mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +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
11 changed files with 39 additions and 35 deletions
|
@ -36,8 +36,8 @@ public:
|
|||
|
||||
DeprecatedString dump_layout_tree();
|
||||
|
||||
OrderedHashMap<DeprecatedString, DeprecatedString> get_local_storage_entries();
|
||||
OrderedHashMap<DeprecatedString, DeprecatedString> get_session_storage_entries();
|
||||
OrderedHashMap<String, String> get_local_storage_entries();
|
||||
OrderedHashMap<String, String> get_session_storage_entries();
|
||||
|
||||
void set_content_filters(Vector<String>);
|
||||
void set_autoplay_allowed_on_all_websites();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue