summaryrefslogtreecommitdiffstats
path: root/WebKit/android
diff options
context:
space:
mode:
authorBart Sears <bsears@google.com>2011-03-21 11:23:32 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-03-21 11:23:32 -0700
commit4c6c5a28199f4770d1422214fcc76a61b5afa42c (patch)
treea66896f3a17711e280b02b1f12c2c46a6fc01a0f /WebKit/android
parente1c3e59945c9789e93c417e064a9abed1057ce42 (diff)
parent6885acdefe22e146f5443ef67be43c7ee9fdcb10 (diff)
downloadexternal_webkit-4c6c5a28199f4770d1422214fcc76a61b5afa42c.zip
external_webkit-4c6c5a28199f4770d1422214fcc76a61b5afa42c.tar.gz
external_webkit-4c6c5a28199f4770d1422214fcc76a61b5afa42c.tar.bz2
Merge "Turns out args should not be decoded twice." into honeycomb-mr1
Diffstat (limited to 'WebKit/android')
-rw-r--r--WebKit/android/jni/WebCoreFrameBridge.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/WebKit/android/jni/WebCoreFrameBridge.cpp b/WebKit/android/jni/WebCoreFrameBridge.cpp
index 49eac3c..7d1adb0 100644
--- a/WebKit/android/jni/WebCoreFrameBridge.cpp
+++ b/WebKit/android/jni/WebCoreFrameBridge.cpp
@@ -1023,9 +1023,6 @@ void WebFrame::autoLogin(const std::string& loginHeader)
if (realm.isEmpty() || args.isEmpty())
return;
- // Args is double-encoded as it contains urls.
- args = WebCore::decodeURLEscapeSequences(args);
-
JNIEnv* env = getJNIEnv();
jstring jRealm = wtfStringToJstring(env, realm, true);
jstring jAccount = wtfStringToJstring(env, account);