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

  /external/chromium_org/content/shell/renderer/test_runner/
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/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/frame/csp/
CSPDirectiveList.cpp 283 bool CSPDirectiveList::allowScriptFromSource(const KURL& url, ContentSecurityPolicy::ReportingStatus 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...]
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.cpp 187 bool FrameLoaderClientImpl::allowScriptFromSource(bool enabledPerSettings, const KURL& scriptURL)
190 return m_webFrame->permissionClient()->allowScriptFromSource(enabledPerSettings, scriptURL);
  /external/chromium_org/chrome/renderer/
content_settings_observer.cc 245 // |allowScript()|, |allowScriptFromSource()|, |allowImage()|, or
371 bool ContentSettingsObserver::allowScriptFromSource(

Completed in 445 milliseconds