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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditorDelegate.h 43 static PassOwnPtr<XSSInfo> create(const String& originalURL, bool didBlockEntirePage, bool didSendXSSProtectionHeader, bool didSendCSPHeader)
45 return adoptPtr(new XSSInfo(originalURL, didBlockEntirePage, didSendXSSProtectionHeader, didSendCSPHeader));
58 XSSInfo(const String& originalURL, bool didBlockEntirePage, bool didSendXSSProtectionHeader, bool didSendCSPHeader)
60 , m_didBlockEntirePage(didBlockEntirePage)
XSSAuditor.cpp 406 bool didBlockEntirePage = (m_xssProtection == BlockReflectedXSS);
407 OwnPtr<XSSInfo> xssInfo = XSSInfo::create(m_documentURL, didBlockEntirePage, m_didSendValidXSSProtectionHeader, m_didSendValidCSPHeader);
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
web_frame_test_proxy.h 175 bool didBlockEntirePage) {
178 base_proxy_->DidDetectXSS(frame, insecureURL, didBlockEntirePage);
179 Base::didDetectXSS(frame, insecureURL, didBlockEntirePage);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderClient.h 142 virtual void didDetectXSS(const KURL&, bool didBlockEntirePage) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.h 110 virtual void didDetectXSS(const WebCore::KURL&, bool didBlockEntirePage) OVERRIDE;
FrameLoaderClientImpl.cpp 551 void FrameLoaderClientImpl::didDetectXSS(const KURL& insecureURL, bool didBlockEntirePage)
554 m_webFrame->client()->didDetectXSS(m_webFrame, insecureURL, didBlockEntirePage);
  /external/chromium_org/third_party/WebKit/public/web/
WebFrameClient.h 380 virtual void didDetectXSS(WebLocalFrame*, const WebURL&, bool didBlockEntirePage) { }

Completed in 482 milliseconds