summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebView.java
diff options
context:
space:
mode:
authorSelim Gurun <sgurun@google.com>2013-03-08 14:23:00 -0800
committerGeremy Condra <gcondra@google.com>2013-04-01 16:04:23 -0700
commitaa2163dd2a7b59b284cfe8a2ff3966a1a1b0ebb8 (patch)
tree17297b6dce00e93c55eb8cbb1f0fce44c8e1d307 /core/java/android/webkit/WebView.java
parent0cb27e28071af59000198c8588c588a2e63cc0a3 (diff)
Add a delimiter between scheme and host
Bug: 6923539 Change-Id: I49aac145e8e80a5af7475cfe93ef4a353d2d3fe6
Diffstat (limited to 'core/java/android/webkit/WebView.java')
-rw-r--r--core/java/android/webkit/WebView.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index e4936532a0b8..11062a2a4241 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -588,7 +588,8 @@ public class WebView extends AbsoluteLayout
* Saves the username and password for a particular host in this WebView's
* internal database.
*
- * @param host the host that required the credentials
+ * @param host the host that required the credentials. It is recommended that
+ * the host is given using scheme://hostname format.
* @param username the username for the given host
* @param password the password for the given host
*/