summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebViewClient.java
diff options
context:
space:
mode:
authorNate Fischer <ntfschr@google.com>2017-09-11 15:16:33 -0700
committerNate Fischer <ntfschr@google.com>2017-09-11 15:16:33 -0700
commitf02f846439b3e01adc34bde4d56ced1304ac8d84 (patch)
tree12ad9542f895f2635acffda587fa6224c9b36191 /core/java/android/webkit/WebViewClient.java
parent55828dd06d63e75b1f98f2c7ed150dd7b7fec78a (diff)
WebView: remove "</p>" tags from docs
Docs change only, no change to logic. This removes closing "</p>" tags from WebView API docs, as per API guidelines. This also adds a trailing newline to a <pre> block for consistency. Other than the modified <pre> block, this has no reader-visible change, it merely complies with best practices from Android API guidelines. Bug: 65381884 Test: make docs (and manually compare before/after for differences) Change-Id: I2f911a43b88a8897d9d1b5c7945360580491883d
Diffstat (limited to 'core/java/android/webkit/WebViewClient.java')
-rw-r--r--core/java/android/webkit/WebViewClient.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/java/android/webkit/WebViewClient.java b/core/java/android/webkit/WebViewClient.java
index e7e539c7f01c..98c131edcba4 100644
--- a/core/java/android/webkit/WebViewClient.java
+++ b/core/java/android/webkit/WebViewClient.java
@@ -66,7 +66,6 @@ public class WebViewClient {
* with the request's url from inside the method and then return true,
* as this will make WebView to attempt loading a non-http url, and thus fail.</li>
* </ul>
- * </p>
*
* @param view The WebView that is initiating the callback.
* @param request Object containing the details of the request.
@@ -130,15 +129,15 @@ public class WebViewClient {
* <p>This method is called when the body of the HTTP response has started loading, is reflected
* in the DOM, and will be visible in subsequent draws. This callback occurs early in the
* document loading process, and as such you should expect that linked resources (for example,
- * css and images) may not be available.</p>
+ * css and images) may not be available.
*
* <p>For more fine-grained notification of visual state updates, see {@link
- * WebView#postVisualStateCallback}.</p>
+ * WebView#postVisualStateCallback}.
*
* <p>Please note that all the conditions and recommendations applicable to
- * {@link WebView#postVisualStateCallback} also apply to this API.<p>
+ * {@link WebView#postVisualStateCallback} also apply to this API.
*
- * <p>This callback is only called for main frame navigations.</p>
+ * <p>This callback is only called for main frame navigations.
*
* @param view The {@link android.webkit.WebView} for which the navigation occurred.
* @param url The URL corresponding to the page navigation that triggered this callback.