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

(default)
Class CefStorageVisitor

CefBase
   |
   +--CefStorageVisitor

   in cef.h

class CefStorageVisitor
extends CefBase

Interface to implement for visiting storage. The methods of this class will always be called on the UI thread.


Method Summary
 virtual bool Visit( CefStorageType type, const CefString& origin, const CefString& key, const CefString& value, int count, int total, bool& deleteData )= 0
          Method that will be called once for each key/value data pair in storage.
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

Visit

public virtual bool Visit( CefStorageType type, const CefString& origin, const CefString& key, const CefString& value, int count, int total, bool& deleteData )= 0;
Method that will be called once for each key/value data pair in storage. |count| is the 0-based index for the current pair. |total| is the total number of pairs. Set |deleteData| to true to delete the pair currently being visited. Return false to stop visiting pairs. This method may never be called if no data is found.

 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