summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebViewClient.java
diff options
context:
space:
mode:
authorPatrick Scott <phanna@android.com>2011-03-09 05:08:15 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-03-09 05:08:15 -0800
commit5d534f288d0c29337458e267fd207236bc23fec5 (patch)
tree2f297221224cbf01edd6bff216a06ceb2a1667d0 /core/java/android/webkit/WebViewClient.java
parentb4ca8b7696ea8559fced8bcdf36e11ed28785c7c (diff)
parentea44c7c71431adbce348cf9ef3f22d9561bb7fc1 (diff)
am ea44c7c7: Merge "Pass the auto login header information to the app." into honeycomb-mr1
* commit 'ea44c7c71431adbce348cf9ef3f22d9561bb7fc1': Pass the auto login header information to the app.
Diffstat (limited to 'core/java/android/webkit/WebViewClient.java')
-rw-r--r--core/java/android/webkit/WebViewClient.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebViewClient.java b/core/java/android/webkit/WebViewClient.java
index db605de6dc77..65026a5d02ac 100644
--- a/core/java/android/webkit/WebViewClient.java
+++ b/core/java/android/webkit/WebViewClient.java
@@ -256,4 +256,18 @@ public class WebViewClient {
*/
public void onScaleChanged(WebView view, float oldScale, float newScale) {
}
+
+ /**
+ * Notify the host application that a request to automatically log in the
+ * user has been processed.
+ * @param view The WebView requesting the login.
+ * @param realm The account realm used to look up accounts.
+ * @param account An optional account. If not null, the account should be
+ * checked against accounts on the device. If it is a valid
+ * account, it should be used to log in the user.
+ * @param args Authenticator specific arguments used to log in the user.
+ */
+ public void onReceivedLoginRequest(WebView view, String realm,
+ String account, String args) {
+ }
}