summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/WebRequest.cpp
diff options
context:
space:
mode:
authorIain Merrick <husky@google.com>2010-10-13 15:08:26 +0100
committerIain Merrick <husky@google.com>2010-10-19 14:47:18 +0100
commit6592639f64d398a3c279c98cd4a15741ebe17b9a (patch)
tree04b1337c616600046a81eca4c550d2b6dd309b18 /WebKit/android/WebCoreSupport/WebRequest.cpp
parent88c013526c4a3dadc408824197843bf978155df3 (diff)
downloadexternal_webkit-6592639f64d398a3c279c98cd4a15741ebe17b9a.zip
external_webkit-6592639f64d398a3c279c98cd4a15741ebe17b9a.tar.gz
external_webkit-6592639f64d398a3c279c98cd4a15741ebe17b9a.tar.bz2
Fixing WebKit APIs affected by Chromium 7.0.540.0 merge
WebUrlLoaderClient, WebRequest: changing std::wstring to string16 http://src.chromium.org/viewvc/chrome?view=rev&revision=54101 HostResolver parameters changed, fixing WebRequestContext.cpp http://src.chromium.org/viewvc/chrome?view=rev&revision=57189 Icon parameter added to AutoFillHost, fixing AutoFillHostAndroid. http://src.chromium.org/viewvc/chrome?view=rev&revision=54052 Change-Id: If6a17af7da3b80d039205883019e4a73eb35f562
Diffstat (limited to 'WebKit/android/WebCoreSupport/WebRequest.cpp')
-rw-r--r--WebKit/android/WebCoreSupport/WebRequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/WebCoreSupport/WebRequest.cpp b/WebKit/android/WebCoreSupport/WebRequest.cpp
index 937a365..e080bcd 100644
--- a/WebKit/android/WebCoreSupport/WebRequest.cpp
+++ b/WebKit/android/WebCoreSupport/WebRequest.cpp
@@ -326,7 +326,7 @@ void WebRequest::OnResponseStarted(URLRequest* request)
}
}
-void WebRequest::setAuth(const std::wstring& username, const std::wstring& password)
+void WebRequest::setAuth(const string16& username, const string16& password)
{
ASSERT(m_loadState == Started, "setAuth called on a WebRequest not in STARTED state (state=%d)", m_loadState);