Home
last modified time | relevance | path

Searched refs:DownloadManagerDelegateQt (Results 1 – 5 of 5) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/core/
H A Ddownload_manager_delegate_qt.cpp67 DownloadManagerDelegateQt::DownloadManagerDelegateQt(ProfileAdapter *profileAdapter) in DownloadManagerDelegateQt() function in QtWebEngineCore::DownloadManagerDelegateQt
76 DownloadManagerDelegateQt::~DownloadManagerDelegateQt() in ~DownloadManagerDelegateQt()
80 void DownloadManagerDelegateQt::GetNextId(content::DownloadIdCallback callback) in GetNextId()
101 void DownloadManagerDelegateQt::cancelDownload(quint32 downloadId) in cancelDownload()
107 void DownloadManagerDelegateQt::pauseDownload(quint32 downloadId) in pauseDownload()
113 void DownloadManagerDelegateQt::resumeDownload(quint32 downloadId) in resumeDownload()
119 void DownloadManagerDelegateQt::removeDownload(quint32 downloadId) in removeDownload()
125 bool DownloadManagerDelegateQt::DetermineDownloadTarget(download::DownloadItem *item, in DetermineDownloadTarget()
236 void DownloadManagerDelegateQt::GetSaveDir(content::BrowserContext* browser_context, in GetSaveDir()
245 void DownloadManagerDelegateQt::ChooseSavePath(content::WebContents *web_contents, in ChooseSavePath()
[all …]
H A Ddownload_manager_delegate_qt.h66 class DownloadManagerDelegateQt
71 DownloadManagerDelegateQt(ProfileAdapter *profileAdapter);
72 ~DownloadManagerDelegateQt();
105 base::WeakPtrFactory<DownloadManagerDelegateQt> m_weakPtrFactory;
110 DISALLOW_COPY_AND_ASSIGN(DownloadManagerDelegateQt);
H A Dprofile_adapter.h74 class DownloadManagerDelegateQt; in QT_FORWARD_DECLARE_CLASS() local
92 DownloadManagerDelegateQt *downloadManagerDelegate(); in QT_FORWARD_DECLARE_CLASS()
229 QScopedPointer<DownloadManagerDelegateQt> m_downloadManagerDelegate; in QT_FORWARD_DECLARE_CLASS()
H A Dprofile_adapter.cpp176 DownloadManagerDelegateQt *ProfileAdapter::downloadManagerDelegate() in downloadManagerDelegate()
179 m_downloadManagerDelegate.reset(new DownloadManagerDelegateQt(this)); in downloadManagerDelegate()
H A Dweb_contents_adapter.cpp1114 DownloadManagerDelegateQt *dlmd = m_profileAdapter->downloadManagerDelegate(); in download()