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

(default)
Class CefCookieVisitor

CefBase
   |
   +--CefCookieVisitor

   in cef_cookie.h

class CefCookieVisitor
extends CefBase

Interface to implement for visiting cookie values. The methods of this class will always be called on the IO thread.


Method Summary
 virtual bool Visit( const CefCookie& cookie, int count, int total, bool& deleteCookie )= 0
          Method that will be called once for each cookie.
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

Visit

public virtual bool Visit( const CefCookie& cookie, int count, int total, bool& deleteCookie )= 0;
Method that will be called once for each cookie. |count| is the 0-based index for the current cookie. |total| is the total number of cookies. Set |deleteCookie| to true to delete the cookie currently being visited. Return false to stop visiting cookies. This method may never be called if no cookies are found.

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

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