summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/web_browser.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-30am: re-namespace frontend applets to frontend directoryLiam1-2/+2
2023-03-25qt: implement RequestExit for appletsLiam1-1/+4
2022-12-06applets/web_browser: Use aliases for callbacksLioncash1-12/+12
Deduplicates a lot of long callback declarations
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-11-04core: Remove unused includesameerj1-1/+0
2021-07-14applets: Append applet_ prefix to backend appletsMorph1-1/+1
2021-04-28applets/web: Fix a use-after-free when passing in the URL stringMorph1-4/+5
The URL string was being deleted before being used, leading to a use-after-free occurring when it is used afterwards. Fix this by taking the string by const ref to extend its lifetime, ensuring it doesn't get deleted before use.
2020-12-18applets/web: Implement the online web browser appletMorph1-0/+8
2020-12-18main, applets/web: Re-add progress dialog for RomFS extractionMorph1-6/+5
2020-12-18applets/web: Implement the default web browser applet frontendMorph1-0/+12
2020-12-18applets: Remove the previous web browser applet implementationMorph1-7/+0
2019-06-25web_browser: Rename OpenPage to OpenPageLocalZach Hilman1-4/+4
This is more representative of what actually occurs, as web does support remote URLs which wouldn't need a romfs callback. This paves for easy future support of this with a call like 'OpenPageRemote' or similar.
2019-04-17web_browser: Make OpenPage non-constZach Hilman1-2/+2
2019-04-17web_browser: Make OpenPage constZach Hilman1-2/+2
2019-01-17core/frontend/applets/web_browser: Make OpenPage() non-constLioncash1-2/+2
This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur.
2018-12-28frontend: Add frontend responder for web browserZach Hilman1-0/+28