HomeSort by relevance Sort by last modified time
    Searched refs:allowScriptFromSource (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/content/shell/renderer/test_runner/
web_permissions.h 24 virtual bool allowScriptFromSource(bool enabledPerSettings,
web_permissions.cc 40 bool WebPermissions::allowScriptFromSource(bool enabled_per_settings,
45 std::string("PERMISSION CLIENT: allowScriptFromSource(") +
  /external/chromium_org/third_party/WebKit/public/web/
WebPermissionClient.h 70 virtual bool allowScriptFromSource(bool enabledPerSettings, const WebURL& scriptURL) { return enabledPerSettings; }
  /external/chromium_org/chrome/renderer/
content_settings_observer.h 41 // and |AllowScriptFromSource()|. |content_setting_rules| must outlive this
63 virtual bool allowScriptFromSource(bool enabled_per_settings,
content_settings_observer.cc 245 // |allowScript()|, |allowScriptFromSource()|, |allowImage()|, or
371 bool ContentSettingsObserver::allowScriptFromSource(
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.h 116 bool allowScriptFromSource(const KURL&, ReportingStatus = SendReport) const;
CSPDirectiveList.h 42 bool allowScriptFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
ContentSecurityPolicy.cpp 432 bool ContentSecurityPolicy::allowScriptFromSource(const KURL& url, ContentSecurityPolicy::ReportingStatus reportingStatus) const
434 return isAllowedByAllWithURL<&CSPDirectiveList::allowScriptFromSource>(m_policies, url, reportingStatus);
527 if (isAllowedByAllWithURL<&CSPDirectiveList::allowChildContextFromSource>(m_policies, url, SuppressReport) && !isAllowedByAllWithURL<&CSPDirectiveList::allowScriptFromSource>(m_policies, url, SuppressReport))
533 isAllowedByAllWithURL<&CSPDirectiveList::allowScriptFromSource>(m_policies, url, reportingStatus);
    [all...]
CSPDirectiveList.cpp 283 bool CSPDirectiveList::allowScriptFromSource(const KURL& url, ContentSecurityPolicy::ReportingStatus reportingStatus) const
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderClient.h 171 virtual bool allowScriptFromSource(bool enabledPerSettings, const KURL&) { return enabledPerSettings; }
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.cpp 230 if (!contentSecurityPolicy()->allowScriptFromSource(url)) {
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.h 136 virtual bool allowScriptFromSource(bool enabledPerSettings, const KURL& scriptURL) OVERRIDE;
FrameLoaderClientImpl.cpp 187 bool FrameLoaderClientImpl::allowScriptFromSource(bool enabledPerSettings, const KURL& scriptURL)
190 return m_webFrame->permissionClient()->allowScriptFromSource(enabledPerSettings, scriptURL);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp 505 if (!shouldBypassMainWorldCSP && !csp->allowScriptFromSource(url, cspReporting))
510 if (!shouldBypassMainWorldCSP && !csp->allowScriptFromSource(url, cspReporting))
515 if (!frame()->loader().client()->allowScriptFromSource(!settings || settings->scriptEnabled(), url)) {
    [all...]

Completed in 180 milliseconds