forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcef_request_context.pxd
More file actions
16 lines (14 loc) · 679 Bytes
/
cef_request_context.pxd
File metadata and controls
16 lines (14 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
from cef_ptr cimport CefRefPtr
# noinspection PyUnresolvedReferences
from cef_request_context_handler cimport CefRequestContextHandler
from cef_types cimport CefRequestContextSettings
cdef extern from "include/cef_request_context.h":
cdef cppclass CefRequestContext:
pass
cdef CefRefPtr[CefRequestContext] CefRequestContext_CreateContext\
"CefRequestContext::CreateContext"(
const CefRequestContextSettings& settings,
CefRefPtr[CefRequestContextHandler] handler)