forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest_context_handler.cpp
More file actions
39 lines (35 loc) · 1.6 KB
/
request_context_handler.cpp
File metadata and controls
39 lines (35 loc) · 1.6 KB
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
// 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 "request_context_handler.h"
#include "common/cefpython_public_api.h"
// --------------------------------------------------------------------------
// CefRequestContextHandler
// --------------------------------------------------------------------------
CefRefPtr<CefCookieManager> RequestContextHandler::GetCookieManager() {
REQUIRE_IO_THREAD();
if (browser_.get()) {
return RequestHandler_GetCookieManager(browser_,
browser_->GetMainFrame()->GetURL());
} else {
CefString mainUrl;
return RequestHandler_GetCookieManager(browser_, mainUrl);
}
// Default: return NULL.
}
bool RequestContextHandler::OnBeforePluginLoad(
const CefString& mime_type,
const CefString& plugin_url,
bool is_main_frame,
const CefString& top_origin_url,
CefRefPtr<CefWebPluginInfo> plugin_info,
PluginPolicy* plugin_policy) {
// Called on multiple threads
return RequestHandler_OnBeforePluginLoad(browser_,
mime_type,
plugin_url,
is_main_frame,
top_origin_url,
plugin_info,
plugin_policy);
}