mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00

This adds storage for cookies that maye be set via 'document.cookie' in JavaScript or the Set-Cookie HTTP header. For now, it parses only the name-value pair from a set-cookie line, but does not parse optional attributes. Currently, storage is ephemeral and only survives for the lifetime of the Browser instance.
22 lines
560 B
CMake
22 lines
560 B
CMake
compile_gml(BrowserWindow.gml BrowserWindowGML.h browser_window_gml)
|
|
compile_gml(EditBookmark.gml EditBookmarkGML.h edit_bookmark_gml)
|
|
compile_gml(Tab.gml TabGML.h tab_gml)
|
|
|
|
set(SOURCES
|
|
BookmarksBarWidget.cpp
|
|
BrowserConsoleClient.cpp
|
|
ConsoleWidget.cpp
|
|
CookieJar.cpp
|
|
DownloadWidget.cpp
|
|
History.cpp
|
|
InspectorWidget.cpp
|
|
main.cpp
|
|
Tab.cpp
|
|
WindowActions.cpp
|
|
BrowserWindowGML.h
|
|
EditBookmarkGML.h
|
|
TabGML.h
|
|
)
|
|
|
|
serenity_app(Browser ICON app-browser)
|
|
target_link_libraries(Browser LibWeb LibProtocol LibGUI LibDesktop)
|