2323 * application has stored any of the following types of browsing data and
2424 * to clear any such stored data for all WebViews in the application.
2525 * <ul>
26- * <li>Username/password pairs entered into web forms</li>
26+ * <li>Username/password pairs for web forms</li>
2727 * <li>HTTP authentication username/password pairs</li>
2828 * <li>Data entered into text fields (e.g. for autocomplete suggestions)</li>
2929 * </ul>
@@ -43,18 +43,23 @@ public static synchronized WebViewDatabase getInstance(Context context) {
4343 }
4444
4545 /**
46- * Gets whether there are any username/password combinations
47- * from web pages saved .
46+ * Gets whether there are any saved username/password pairs for web forms.
47+ * Note that these are unrelated to HTTP authentication credentials .
4848 *
49- * @return true if there are any username/passwords used in web
50- * forms saved
49+ * @return true if there are any saved username/password pairs
50+ * @see WebView#savePassword
51+ * @see clearUsernamePassword
5152 */
5253 public boolean hasUsernamePassword () {
5354 throw new MustOverrideException ();
5455 }
5556
5657 /**
57- * Clears any username/password combinations saved from web forms.
58+ * Clears any saved username/password pairs for web forms.
59+ * Note that these are unrelated to HTTP authentication credentials.
60+ *
61+ * @see WebView#savePassword
62+ * @see hasUsernamePassword
5863 */
5964 public void clearUsernamePassword () {
6065 throw new MustOverrideException ();
0 commit comments