mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Add the ability to Pause/Resume downloads via new CefDownloadItemCallback methods (issue #1425).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1966 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -71,6 +71,18 @@ class CefDownloadItemCallback : public virtual CefBase {
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void Cancel() =0;
|
||||
|
||||
///
|
||||
// Call to pause the download.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void Pause() =0;
|
||||
|
||||
///
|
||||
// Call to resume the download.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void Resume() =0;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user