Home
last modified time | relevance | path

Searched refs:shouldBypassMainWorldCSP (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DStyleElement.cpp155 bool shouldBypassMainWorldCSP = frame && frame->script().shouldBypassMainWorldCSP(); in createSheet() local
158 bool passesContentSecurityPolicyChecks = shouldBypassMainWorldCSP in createSheet()
DScriptLoader.cpp313 bool shouldBypassMainWorldCSP = (frame && frame->script().shouldBypassMainWorldCSP()) in executeScript() local
317 …if (!m_isExternalScript && (!shouldBypassMainWorldCSP && !csp->allowInlineScript(elementDocument->… in executeScript()
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventSource.cpp89 bool shouldBypassMainWorldCSP = false; in create() local
92 shouldBypassMainWorldCSP = document->frame()->script().shouldBypassMainWorldCSP(); in create()
94 …if (!shouldBypassMainWorldCSP && !context->contentSecurityPolicy()->allowConnectToSource(fullURL))… in create()
/external/chromium_org/third_party/WebKit/Source/core/loader/
DImageLoader.cpp65 static ImageLoader::BypassMainWorldBehavior shouldBypassMainWorldCSP(ImageLoader* loader) in shouldBypassMainWorldCSP() function
70 if (loader->element()->document().frame()->script().shouldBypassMainWorldCSP()) in shouldBypassMainWorldCSP()
84 , m_shouldBypassMainWorldCSP(shouldBypassMainWorldCSP(loader)) in Task()
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DDOMWebSocket.cpp308 bool shouldBypassMainWorldCSP = false; in connect() local
311 shouldBypassMainWorldCSP = document->frame()->script().shouldBypassMainWorldCSP(); in connect()
313 …if (!shouldBypassMainWorldCSP && !executionContext()->contentSecurityPolicy()->allowConnectToSourc… in connect()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DResourceFetcher.cpp488 …bool shouldBypassMainWorldCSP = (frame() && frame()->script().shouldBypassMainWorldCSP()) || (opti… in canRequest() local
505 if (!shouldBypassMainWorldCSP && !csp->allowScriptFromSource(url, cspReporting)) in canRequest()
510 if (!shouldBypassMainWorldCSP && !csp->allowScriptFromSource(url, cspReporting)) in canRequest()
522 if (!shouldBypassMainWorldCSP && !csp->allowStyleFromSource(url, cspReporting)) in canRequest()
527 if (!shouldBypassMainWorldCSP && !csp->allowImageFromSource(url, cspReporting)) in canRequest()
531 if (!shouldBypassMainWorldCSP && !csp->allowFontFromSource(url, cspReporting)) in canRequest()
542 if (!shouldBypassMainWorldCSP && !csp->allowMediaFromSource(url, cspReporting)) in canRequest()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DScriptController.h108 bool shouldBypassMainWorldCSP();
DScriptController.cpp244 bool ScriptController::shouldBypassMainWorldCSP() in shouldBypassMainWorldCSP() function in blink::ScriptController
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
DContentSecurityPolicy.cpp861 return document->frame()->script().shouldBypassMainWorldCSP(); in shouldBypassMainWorld()