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
35 lines (31 loc) · 1.36 KB
/
request_context_handler.cpp
File metadata and controls
35 lines (31 loc) · 1.36 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
// Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
// License: New BSD License.
// Website: http://code.google.com/p/cefpython/
#include "request_context_handler.h"
#include "common/cefpython_public_api.h"
#include "DebugLog.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,
const CefString& top_origin_url,
CefRefPtr<CefWebPluginInfo> plugin_info,
PluginPolicy* plugin_policy) {
// Called on multiple threads
return RequestHandler_OnBeforePluginLoad(browser_, mime_type, plugin_url,
top_origin_url, plugin_info,
plugin_policy);
}