diff options
-rw-r--r-- | core/java/android/webkit/SslErrorHandler.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/java/android/webkit/SslErrorHandler.java b/core/java/android/webkit/SslErrorHandler.java index 3a43950..af31544 100644 --- a/core/java/android/webkit/SslErrorHandler.java +++ b/core/java/android/webkit/SslErrorHandler.java @@ -19,9 +19,11 @@ package android.webkit; import android.os.Handler; /** - * SslErrorHandler: class responsible for handling SSL errors. - * This class is passed as a parameter to BrowserCallback.displaySslErrorDialog - * and is meant to receive the user's response. + * Represents a request for handling an SSL error. Instances of this class are + * created by the WebView and passed to + * {@link WebViewClient#onReceivedSslError}. The host application must call + * either {@link #proceed} or {@link #cancel} to set the WebView's response + * to the request. */ public class SslErrorHandler extends Handler { |