git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
WebHTTPBody: Keep track of whether the data includes passwords.
[WebKit-https.git]
/
Source
/
WebKit
/
chromium
/
src
/
WebHTTPBody.cpp
diff --git
a/Source/WebKit/chromium/src/WebHTTPBody.cpp
b/Source/WebKit/chromium/src/WebHTTPBody.cpp
index
d67a701
..
d8a0647
100644
(file)
--- a/
Source/WebKit/chromium/src/WebHTTPBody.cpp
+++ b/
Source/WebKit/chromium/src/WebHTTPBody.cpp
@@
-150,6
+150,16
@@
void WebHTTPBody::setIdentifier(long long identifier)
return m_private->setIdentifier(identifier);
}
return m_private->setIdentifier(identifier);
}
+bool WebHTTPBody::containsPasswordData() const
+{
+ return m_private->containsPasswordData();
+}
+
+void WebHTTPBody::setContainsPasswordData(bool containsPasswordData)
+{
+ m_private->setContainsPasswordData(containsPasswordData);
+}
+
WebHTTPBody::WebHTTPBody(const PassRefPtr<FormData>& data)
: m_private(static_cast<WebHTTPBodyPrivate*>(data.leakRef()))
{
WebHTTPBody::WebHTTPBody(const PassRefPtr<FormData>& data)
: m_private(static_cast<WebHTTPBodyPrivate*>(data.leakRef()))
{