forked from Berserker66/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequest_context_handler.cpp
More file actions
27 lines (24 loc) · 1.23 KB
/
Copy pathrequest_context_handler.cpp
File metadata and controls
27 lines (24 loc) · 1.23 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
// 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
// --------------------------------------------------------------------------
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);
}