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

  /external/webkit/WebCore/dom/
Tokenizer.h 29 class XSSAuditor;
61 XSSAuditor* xssAuditor() const { return m_XSSAuditor; }
62 void setXSSAuditor(XSSAuditor* auditor) { m_XSSAuditor = auditor; }
78 // The XSSAuditor associated with this tokenizer.
79 XSSAuditor* m_XSSAuditor;
  /external/webkit/WebCore/page/
XSSAuditor.h 38 // The XSSAuditor class is used to prevent type 1 cross-site scripting
41 // More specifically, the XSSAuditor class decides whether the execution of
51 // When you instantiate the XSSAuditor you must specify the Frame of the
56 // An XSSAuditor is instantiated within the constructor of a
58 // ScriptController calls back to the XSSAuditor to determine whether a
60 // methods call into XSSAuditor:
69 class XSSAuditor : public Noncopyable {
71 XSSAuditor(Frame*);
72 ~XSSAuditor();
XSSAuditor.cpp 28 #include "XSSAuditor.h"
73 String XSSAuditor::CachingURLCanonicalizer::canonicalizeURL(const String& url, const TextEncoding& encoding, bool decodeEntities,
88 XSSAuditor::XSSAuditor(Frame* frame)
93 XSSAuditor::~XSSAuditor()
97 bool XSSAuditor::isEnabled() const
103 bool XSSAuditor::canEvaluate(const String& code) const
121 bool XSSAuditor::canEvaluateJavaScriptURL(const String& code) const
138 bool XSSAuditor::canCreateInlineEventListener(const String&, const String& code) cons
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptController.h 56 class XSSAuditor;
101 XSSAuditor* xssAuditor() { return m_XSSAuditor.get(); }
193 // The XSSAuditor associated with this ScriptController.
194 OwnPtr<XSSAuditor> m_XSSAuditor;
ScriptController.cpp 60 #include "XSSAuditor.h"
114 , m_XSSAuditor(new XSSAuditor(frame))
  /external/webkit/WebCore/bindings/js/
ScriptController.h 61 class XSSAuditor;
160 XSSAuditor* xssAuditor() { return m_XSSAuditor.get(); }
191 // The XSSAuditor associated with this ScriptController.
192 OwnPtr<XSSAuditor> m_XSSAuditor;
ScriptController.cpp 40 #include "XSSAuditor.h"
71 , m_XSSAuditor(new XSSAuditor(frame))
  /external/webkit/WebCore/
Android.mk 363 page/XSSAuditor.cpp \

Completed in 98 milliseconds