Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
35 lines (23 loc) · 1001 Bytes

File metadata and controls

35 lines (23 loc) · 1001 Bytes
Copy raw file
Download raw file
Outline
Edit and raw actions

API categories | API index

CookieVisitor (interface)

See CookieManager.VisitAllCookies() and CookieManager.VisitUrlCookies().

You must keep a strong reference to the CookieVisitor object while visiting cookies, otherwise it gets destroyed and the CookieVisitor callbacks won't be called.

Table of contents:

Callbacks

Visit

Parameter Type
cookie Cookie
count int
total int
delete_cookie_out list[bool]
Return bool

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 |delete_cookie_out[0]| to True to delete the cookie currently being visited. Return False to stop visiting cookies, True to continue. This method may never be called if no cookies are found.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.