Home | History | Annotate | Download | only in page

Lines Matching defs:m_scriptSrc

891     OwnPtr<SourceListDirective> m_scriptSrc;
914 if (!directives->checkEval(directives->operativeDirective(directives->m_scriptSrc.get()))) {
915 String message = "Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: \"" + directives->operativeDirective(directives->m_scriptSrc.get())->text() + "\".\n";
1053 return checkInlineAndReportViolation(operativeDirective(m_scriptSrc.get()), consoleMessage, contextURL, contextLine, true);
1055 return checkInline(operativeDirective(m_scriptSrc.get()));
1063 return checkInlineAndReportViolation(operativeDirective(m_scriptSrc.get()), consoleMessage, contextURL, contextLine, true);
1065 return checkInline(operativeDirective(m_scriptSrc.get()));
1073 checkInlineAndReportViolation(operativeDirective(m_scriptSrc.get()), consoleMessage, contextURL, contextLine, true) :
1074 checkInline(operativeDirective(m_scriptSrc.get()));
1090 checkEvalAndReportViolation(operativeDirective(m_scriptSrc.get()), consoleMessage, String(), WTF::OrdinalNumber::beforeFirst(), state) :
1091 checkEval(operativeDirective(m_scriptSrc.get()));
1104 checkSourceAndReportViolation(operativeDirective(m_scriptSrc.get()), url, scriptSrc) :
1105 checkSource(operativeDirective(m_scriptSrc.get()), url);
1183 return checkNonce(operativeDirective(m_scriptSrc.get()), nonce);
1372 setCSPDirective<SourceListDirective>(name, value, m_scriptSrc);