MCPcopy Create free account
hub / github.com/cztomczak/cefpython / CreateTask_SetCookie

Function CreateTask_SetCookie

src/client_handler/task.cpp:30–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30CefRefPtr<CefTask> CreateTask_SetCookie(
31 CefCookieManager* obj,
32 const CefString& url,
33 const CefCookie& cookie,
34 CefRefPtr<CefSetCookieCallback> callback)
35{
36 return CefCreateClosureTask(base::Bind(
37 base::IgnoreResult(&CefCookieManager::SetCookie), obj,
38 url,
39 cookie,
40 callback
41 ));
42}
43
44CefRefPtr<CefTask> CreateTask_DeleteCookies(
45 CefCookieManager* obj,

Callers

nothing calls this directly

Calls 2

BindFunction · 0.85
IgnoreResultFunction · 0.85

Tested by

no test coverage detected