summaryrefslogtreecommitdiffstats
path: root/lib/download_manager_delegate_qt.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of the intermediate "shared" static library.Jocelyn Turcotte2013-11-211-1/+1
| | | | | | | | It is not necessary anymore since QtWebEngineProcess dynamically links to the core library which will now contain those symbols. Change-Id: I3475347bab41a00b943f934a5e341326c66dc726 Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* Mark functions with Q_DECL_OVERRIDE where necessary.Zeno Albisser2013-11-141-2/+2
| | | | | Change-Id: I15261c3737a3284b99308453132f09ee7889c444 Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
* Use toFilePathString for download file names.Michael Brüning2013-09-121-10/+9
| | | | | | | | | Use the appropriate method to convert to base::FilePath::StringType. Also removes unused and unneeded variables. Change-Id: I6005e0e9b566a8bb4182005571a68d5b9da9b409 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
* Add implementation to enable downloads.Michael Brüning2013-09-031-4/+125
| | | | | | | | | | | | | | | | | This implementation will download files to the standard download directory and assign unique file names should there be a file with the same name existing or being downloaded. It should be replaced with some more sophisticated code that also takes into account settings and user choice possibly. For now, it is only added to make downloads work at all. Known issue: We do not get notified about completed downloads even though we are observing the DownloadItem objects. Change-Id: I2b52246635d3fd1358edc6b648d470ff821bc9f1 Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
* Add a dummy implementation of DownloadManagerDelegate.Michael Brüning2013-08-081-0/+130
Prevents the the web engine from crashing by providing an implementation and generating download Ids for downloads. Change-Id: Iac1e98b74ec1fdc9d913951fbfed4b7ba394170f Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>