Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e41c3cdb authored by Ben Murdoch's avatar Ben Murdoch Committed by Android Git Automerger
Browse files

am 7e157f32: Merge "Deprectate WebViewDatabase password methods." into jb-mr2-dev

* commit '7e157f32':
  Deprectate WebViewDatabase password methods.
parents e813a85c 7e157f32
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28043,11 +28043,11 @@ package android.webkit {
  public class WebViewDatabase {
    method public void clearFormData();
    method public void clearHttpAuthUsernamePassword();
    method public void clearUsernamePassword();
    method public deprecated void clearUsernamePassword();
    method public static android.webkit.WebViewDatabase getInstance(android.content.Context);
    method public boolean hasFormData();
    method public boolean hasHttpAuthUsernamePassword();
    method public boolean hasUsernamePassword();
    method public deprecated boolean hasUsernamePassword();
  }
  public class WebViewFragment extends android.app.Fragment {
+5 −1
Original line number Diff line number Diff line
@@ -50,8 +50,10 @@ public class WebViewDatabase {
     *
     * @return true if there are any saved username/password pairs
     * @see WebView#savePassword
     * @see #clearUsernamePassword
     * @see #clearUsernamePassworda
     * @deprecated Saving passwords in WebView will not be supported in future versions.
     */
    @Deprecated
    public boolean hasUsernamePassword() {
        throw new MustOverrideException();
    }
@@ -62,7 +64,9 @@ public class WebViewDatabase {
     *
     * @see WebView#savePassword
     * @see #hasUsernamePassword
     * @deprecated Saving passwords in WebView will not be supported in future versions.
     */
    @Deprecated
    public void clearUsernamePassword() {
        throw new MustOverrideException();
    }