(default)
Class CefDownloadHandler
CefBase
|
+--CefDownloadHandler
in cef.h
- class CefDownloadHandler
- extends CefBase
Class used to handle file downloads. The methods of this class will always be
called on the UI thread.
|
Method Summary |
virtual void |
Complete()= 0
The download is complete. |
virtual bool |
ReceivedData( void* data, int data_size )= 0
A portion of the file contents have been received. |
Complete
public virtual void Complete()= 0;
- The download is complete.
ReceivedData
public virtual bool ReceivedData( void* data, int data_size )= 0;
- A portion of the file contents have been received. This method will be
called multiple times until the download is complete. Return |true| to
continue receiving data and |false| to cancel.
Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt