summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/web_browser.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* am: re-namespace frontend applets to frontend directoryLiam2024-01-301-2/+2
|
* qt: implement RequestExit for appletsLiam2023-03-251-0/+2
|
* applets/web_browser: Use aliases for callbacksLioncash2022-12-061-6/+5
| | | | Deduplicates a lot of long callback declarations
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-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.
* applets/web: Fix a use-after-free when passing in the URL stringMorph2021-04-281-2/+2
| | | | | | 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.
* applets/web: Implement the online web browser appletMorph2020-12-181-0/+9
|
* main, applets/web: Re-add progress dialog for RomFS extractionMorph2020-12-181-2/+3
|
* applets/web: Implement the default web browser applet frontendMorph2020-12-181-0/+8
|
* applets: Remove the previous web browser applet implementationMorph2020-12-181-10/+0
|
* web_browser: Rename OpenPage to OpenPageLocalZach Hilman2019-06-251-3/+3
| | | 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.
* core/frontend/applets/web_browser: Make OpenPage() non-constLioncash2019-01-171-1/+1
| | | | | | | | 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.
* frontend: Add frontend responder for web browserZach Hilman2018-12-281-0/+24