forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.h
More file actions
23 lines (18 loc) · 730 Bytes
/
task.h
File metadata and controls
23 lines (18 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2014 CEF Python, see the Authors file.
// All rights reserved. Licensed under BSD 3-clause license.
// Project website: https://github.com/cztomczak/cefpython
#pragma once
#include "common/cefpython_public_api.h"
#include "include/cef_cookie.h"
#include "include/cef_task.h"
void PostTaskWrapper(int threadId, int taskId);
CefRefPtr<CefTask> CreateTask_SetCookie(
CefCookieManager* obj,
const CefString& url,
const CefCookie& cookie,
CefRefPtr<CefSetCookieCallback> callback);
CefRefPtr<CefTask> CreateTask_DeleteCookies(
CefCookieManager* obj,
const CefString& url,
const CefString& cookie_name,
CefRefPtr<CefDeleteCookiesCallback> callback);