forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcef_request_handler.pxd
More file actions
17 lines (14 loc) · 571 Bytes
/
cef_request_handler.pxd
File metadata and controls
17 lines (14 loc) · 571 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
from cef_string cimport CefString
from libcpp cimport bool as cpp_bool
cdef extern from "include/cef_auth_callback.h":
cdef cppclass CefAuthCallback:
void Continue(const CefString& username,
const CefString& password)
void Cancel()
cdef extern from "include/cef_request_handler.h":
cdef cppclass CefRequestCallback:
void Continue(cpp_bool allow)
void Cancel()