summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/HttpAuthHandler.java
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2012-08-22 19:46:45 +0100
committerBen Murdoch <benm@google.com>2012-08-22 19:46:45 +0100
commit2433fe9f04caa4257f7313a41d3bbae90ca2fe23 (patch)
tree17a0038086d5c64ccbef590e961b02b3f4d2a36b /core/java/android/webkit/HttpAuthHandler.java
parent6479ecd1b24e9d5a5636130cb4b0c353b396ff0e (diff)
Make HttpAuthHandler ctor public/@hide.
The Chromium WebView Provider needs to subclass HttpAuthHandler so that we can adapt a ChromHttpAuthHandler into an android.webkit.HttpAuthHandler. Currently the constructor (that does nothing) is package private. So to satisfy the subclass requirement, make it public, and to satisfy the API, make it @hide. Bug: 7034995 Change-Id: I9846aecacce078696db5be709394afb980eb25a6
Diffstat (limited to 'core/java/android/webkit/HttpAuthHandler.java')
-rw-r--r--core/java/android/webkit/HttpAuthHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/webkit/HttpAuthHandler.java b/core/java/android/webkit/HttpAuthHandler.java
index b3571aaa5de8..296d960a5812 100644
--- a/core/java/android/webkit/HttpAuthHandler.java
+++ b/core/java/android/webkit/HttpAuthHandler.java
@@ -28,9 +28,9 @@ import android.os.Handler;
public class HttpAuthHandler extends Handler {
/**
- * Package-private constructor needed for API compatibility.
+ * @hide Only for use by WebViewProvider implementations.
*/
- HttpAuthHandler() {
+ public HttpAuthHandler() {
}
/**