summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/Browser.h
AgeCommit message (Collapse)Author
2021-08-24Browser: Remove single-process mode :^)Andreas Kling
Browser now only supports multi-process mode (Web::OutOfProcessWebView). This is where we want to go, so let's just jump in the cold water. :^)
2021-05-18Browser: Move menu management from Tab to BrowserWindowAndreas Kling
It was very confusing for every Tab to have their own GUI::Menubar that got dynamically swapped in/out when switching tabs. This change moves us to a single menubar per window, and BrowserWindow is the owner of its own menubar.
2021-04-29Browser: Save search engine setting to preferencesMaciej Zygmanowski
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-12Applications: Move to Userland/Applications/Andreas Kling