Allow CefV8Context::Eval to bypass CSP (issue #2024)

This commit is contained in:
Marshall Greenblatt
2016-10-27 12:34:19 -04:00
parent f7a4102978
commit 0e97c527ae
14 changed files with 274 additions and 52 deletions

View File

@ -291,7 +291,7 @@ PERF_TEST_FUNC(V8ContextEval) {
CefRefPtr<CefV8Exception> exception;
PERF_ITERATIONS_START()
context->Eval(jsCode, retval, exception);
context->Eval(jsCode, CefString(), 0, retval, exception);
PERF_ITERATIONS_END()
}