diff options
author | Bart Sears <bsears@google.com> | 2011-03-21 11:23:32 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-03-21 11:23:32 -0700 |
commit | 4c6c5a28199f4770d1422214fcc76a61b5afa42c (patch) | |
tree | a66896f3a17711e280b02b1f12c2c46a6fc01a0f /WebKit/android | |
parent | e1c3e59945c9789e93c417e064a9abed1057ce42 (diff) | |
parent | 6885acdefe22e146f5443ef67be43c7ee9fdcb10 (diff) | |
download | external_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.cpp | 3 |
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); |