Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(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.
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

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.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt