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

  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.cpp 66 if (executionContext()->contentSecurityPolicy() && !executionContext()->contentSecurityPolicy()->allowScriptFromSource(scriptURL)) {
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebPermissions.h 48 virtual bool allowScriptFromSource(blink::WebFrame*, bool enabledPerSettings, const blink::WebURL& scriptURL);
WebPermissions.cpp 60 bool WebPermissions::allowScriptFromSource(blink::WebFrame*, bool enabledPerSettings, const blink::WebURL& scriptURL)
64 m_delegate->printMessage(std::string("PERMISSION CLIENT: allowScriptFromSource(") + normalizeLayoutTestURL(scriptURL.spec()) + "): " + (allowed ? "true" : "false") + "\n");
  /external/chromium_org/third_party/WebKit/public/web/
WebPermissionClient.h 65 virtual bool allowScriptFromSource(WebFrame*, 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
67 virtual bool allowScriptFromSource(blink::WebFrame* frame,
content_settings_observer.cc 218 // |allowScript()|, |allowScriptFromSource()|, |allowImage()|, or
332 bool ContentSettingsObserver::allowScriptFromSource(
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMSecurityPolicy.cpp 166 return isAllowedWithURL<&ContentSecurityPolicy::allowScriptFromSource>(executionContext(), url);
ContentSecurityPolicy.h 97 bool allowScriptFromSource(const KURL&, ReportingStatus = SendReport) const;
ContentSecurityPolicy.cpp 873 bool allowScriptFromSource(const KURL&, ContentSecurityPolicy::ReportingStatus) const;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderClient.h 189 virtual bool allowScriptFromSource(bool enabledPerSettings, const KURL&) { return enabledPerSettings; }
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.h 131 virtual bool allowScriptFromSource(bool enabledPerSettings, const WebCore::KURL& scriptURL);
FrameLoaderClientImpl.cpp 197 bool FrameLoaderClientImpl::allowScriptFromSource(bool enabledPerSettings, const KURL& scriptURL)
200 return m_webFrame->permissionClient()->allowScriptFromSource(m_webFrame, enabledPerSettings, scriptURL);
204 return webview->permissionClient()->allowScriptFromSource(m_webFrame, enabledPerSettings, scriptURL);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.cpp 483 if (!shouldBypassMainWorldContentSecurityPolicy && !m_document->contentSecurityPolicy()->allowScriptFromSource(url))
488 if (!shouldBypassMainWorldContentSecurityPolicy && !m_document->contentSecurityPolicy()->allowScriptFromSource(url))
493 if (!frame()->loader().client()->allowScriptFromSource(!settings || settings->isScriptEnabled(), url)) {
    [all...]

Completed in 122 milliseconds