Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefCookieVisitor

CefBaseRefCounted
   |
   +--CefCookieVisitor

   in cef_cookie.h

class CefCookieVisitor
extends CefBaseRefCounted

Interface to implement for visiting cookie values. The methods of this class will always be called on the UI 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 CefBaseRefCounted
AddRef, Release, HasOneRef, HasAtLeastOneRef
 

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 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

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