diff options
| author | 2012-11-13 14:29:30 +0000 | |
|---|---|---|
| committer | 2012-11-13 18:25:23 +0000 | |
| commit | 881c49c99be006f90a51a444db6b96289947e73a (patch) | |
| tree | 1a7b9e2b8cb6b56bf4744ab1f9b3ce519e004001 | |
| parent | d214296f7fa1b1f7824a4847d63b1b06691a6b48 (diff) | |
Update WebViewClient.shouldOverrideUrlLoading JavaDoc.
Add a comment to say that the method will not be called for POST requests.
Change-Id: If767093846584df834f9d258241306722b1abd99
| -rw-r--r-- | core/java/android/webkit/WebViewClient.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebViewClient.java b/core/java/android/webkit/WebViewClient.java index 08a046a74992..7946b6c44e5e 100644 --- a/core/java/android/webkit/WebViewClient.java +++ b/core/java/android/webkit/WebViewClient.java @@ -31,6 +31,7 @@ public class WebViewClient { * proper handler for the url. If WebViewClient is provided, return true * means the host application handles the url, while return false means the * current WebView handles the url. + * This method is not called for requests using the POST "method". * * @param view The WebView that is initiating the callback. * @param url The url to be loaded. |