Home
last modified time | relevance | path

Searched refs:m_policies (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
DContentSecurityPolicy.cpp167 …for (CSPDirectiveListVector::const_iterator iter = m_policies.begin(); iter != m_policies.end(); +… in applyPolicySideEffectsToExecutionContext()
189 ASSERT(m_policies.isEmpty()); in copyStateFrom()
190 …(CSPDirectiveListVector::const_iterator iter = other->m_policies.begin(); iter != other->m_policie… in copyStateFrom()
245 m_policies.append(policy.release()); in addPolicyFromHeaderValue()
270 return m_policies.isEmpty() ? emptyString() : m_policies[0]->header(); in deprecatedHeader()
275 …return m_policies.isEmpty() ? ContentSecurityPolicyHeaderTypeEnforce : m_policies[0]->headerType(); in deprecatedHeaderType()
389 …return isAllowedByAllWithContext<&CSPDirectiveList::allowJavaScriptURLs>(m_policies, contextURL, c… in allowJavaScriptURLs()
394 …return isAllowedByAllWithContext<&CSPDirectiveList::allowInlineEventHandlers>(m_policies, contextU… in allowInlineEventHandlers()
399 …return isAllowedByAllWithContext<&CSPDirectiveList::allowInlineScript>(m_policies, contextURL, con… in allowInlineScript()
406 …return isAllowedByAllWithContext<&CSPDirectiveList::allowInlineStyle>(m_policies, contextURL, cont… in allowInlineStyle()
[all …]
DContentSecurityPolicy.h210 CSPDirectiveListVector m_policies; variable