summaryrefslogtreecommitdiffstats
path: root/webkit/api
diff options
context:
space:
mode:
authorlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-26 23:19:56 +0000
committerlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-26 23:19:56 +0000
commit08bf350c32da989d105ed3777535eec472be5967 (patch)
tree67115fe0dad4a57f64c7196e66417c84687ad113 /webkit/api
parent767eed2cb4dfbdd57b14aafb85ab0a7570f71a7c (diff)
downloadchromium_src-08bf350c32da989d105ed3777535eec472be5967.zip
chromium_src-08bf350c32da989d105ed3777535eec472be5967.tar.gz
chromium_src-08bf350c32da989d105ed3777535eec472be5967.tar.bz2
Fix build break.
http://trac.webkit.org/changeset/47797 renamed some methods and this adjusts for that rename. TBR=jorlow@chormium.org BUG=None TEST=None Review URL: http://codereview.chromium.org/173540 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24559 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/api')
-rw-r--r--webkit/api/src/WebURLRequest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/api/src/WebURLRequest.cpp b/webkit/api/src/WebURLRequest.cpp
index 08828f9..57d2ae0 100644
--- a/webkit/api/src/WebURLRequest.cpp
+++ b/webkit/api/src/WebURLRequest.cpp
@@ -105,12 +105,12 @@ void WebURLRequest::setFirstPartyForCookies(const WebURL& firstPartyForCookies)
bool WebURLRequest::allowCookies() const
{
- return m_private->m_resourceRequest->allowHTTPCookies();
+ return m_private->m_resourceRequest->allowCookies();
}
void WebURLRequest::setAllowCookies(bool allowCookies)
{
- m_private->m_resourceRequest->setAllowHTTPCookies(allowCookies);
+ m_private->m_resourceRequest->setAllowCookies(allowCookies);
}
bool WebURLRequest::allowStoredCredentials() const