1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00

Browser: Rename "on_want_cookies" to match local storage equivalent

This commit is contained in:
Rafał Babiarz 2022-05-04 21:51:15 +02:00 committed by Linus Groh
parent 969e5fa163
commit dc66d16dc2
3 changed files with 4 additions and 4 deletions

View file

@ -551,7 +551,7 @@ void BrowserWindow::create_new_tab(URL url, bool activate)
m_cookie_jar.dump_cookies();
};
new_tab.on_want_cookies = [this]() {
new_tab.on_get_cookies_entries = [this]() {
return m_cookie_jar.get_all_cookies();
};