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:
Marshall Greenblatt
2015-01-12 19:47:40 +00:00
parent ad536f769f
commit 833f762273
6 changed files with 101 additions and 0 deletions

View File

@@ -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;
};