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
44 lines (37 loc) · 1.52 KB

File metadata and controls

44 lines (37 loc) · 1.52 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) 2013 CEF Python, see the Authors file.
// All rights reserved. Licensed under BSD 3-clause license.
// Project website: https://github.com/cztomczak/cefpython
#include "resource_handler.h"
bool ResourceHandler::ProcessRequest(CefRefPtr<CefRequest> request,
CefRefPtr<CefCallback> callback) {
REQUIRE_IO_THREAD();
return ResourceHandler_ProcessRequest(resourceHandlerId_, request,
callback);
}
void ResourceHandler::GetResponseHeaders(CefRefPtr<CefResponse> response,
int64& response_length,
CefString& redirectUrl) {
REQUIRE_IO_THREAD();
ResourceHandler_GetResponseHeaders(resourceHandlerId_, response,
response_length, redirectUrl);
}
bool ResourceHandler::ReadResponse(void* data_out,
int bytes_to_read,
int& bytes_read,
CefRefPtr<CefCallback> callback) {
REQUIRE_IO_THREAD();
return ResourceHandler_ReadResponse(resourceHandlerId_, data_out,
bytes_to_read, bytes_read, callback);
}
bool ResourceHandler::CanGetCookie(const CefCookie& cookie) {
REQUIRE_IO_THREAD();
return ResourceHandler_CanGetCookie(resourceHandlerId_, cookie);
}
bool ResourceHandler::CanSetCookie(const CefCookie& cookie) {
REQUIRE_IO_THREAD();
return ResourceHandler_CanSetCookie(resourceHandlerId_, cookie);
}
void ResourceHandler::Cancel() {
REQUIRE_IO_THREAD();
return ResourceHandler_Cancel(resourceHandlerId_);
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.