summaryrefslogtreecommitdiffstats
path: root/src/core/request_controller.h
Commit message (Collapse)AuthorAgeFilesLines
* RequestController: Fix pure virtual method call crashJüri Valdmann2018-04-191-4/+1
| | | | | | | | | | Fixes bug introduced by 4b30d82f05064723b9c3684e1c16ae0cf9d71baa where somebody had the bright idea to call reject() from RequestController's destructor. Of course, at this point the subclasses have already been destructed and a pure virtual method call error is triggered. Change-Id: Ida581285828c592a76f9ca981ec780f2711d298e Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* Reject unanswered permission requestsJüri Valdmann2018-04-131-3/+8
| | | | | Change-Id: I2a5b35810d20dec685e134f6d8fe3383003d33d1 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* Use wrappers in QtWebEngineCore public interfaceJüri Valdmann2018-04-131-1/+1
| | | | | | | | Stop exporting quota / RegisterProtocolHandler request controller classes, and use the public wrapper classes in WebContentsAdapterClient instead. Change-Id: Iaa380b6ceb4f9464fc05dd012ee5df219f11f189 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
* Shorten names of permission classesJüri Valdmann2018-04-131-0/+84
Remove 'permission' from class and signal names, so e.g. QWebEngineQuotaPermissionRequest becomes QWebEngineQuotaRequest and quotaPermissionRequested becomes quotaRequested. Rename the internal controller classes to public name + "Controller". Change-Id: I247714ab0a2880adbf4ed8ee68f1b78838ae7a14 Reviewed-by: Kai Koehne <kai.koehne@qt.io>