summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebChromeClient.java
diff options
context:
space:
mode:
authorNate Fischer <ntfschr@google.com>2017-08-30 15:39:32 -0700
committerNate Fischer <ntfschr@google.com>2017-08-30 15:39:32 -0700
commitc4f8f89bcc9ab1bbaab45dd189a985406ef34c14 (patch)
tree264f2be53bbd32d37f68d7394558ca62962336ae /core/java/android/webkit/WebChromeClient.java
parent612e67323feadfe2baea8181c0ad4c7cdf98ef1a (diff)
WebView: fix broken references to #onShowFileChooser
WebChromeClient#onShowFileChooser was incorrectly referred to as "showFileChooser" in two locations. Now these locations use the correct name and the spot using "<code>" has been fixed to use "{@link}". This also fixes a grammar error in the docs. Bug: 65213653 Test: make docs (and manually verify the link works) Change-Id: I17ba8ac3f76371a8b8a12b998ce4c956b6237119
Diffstat (limited to 'core/java/android/webkit/WebChromeClient.java')
-rw-r--r--core/java/android/webkit/WebChromeClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebChromeClient.java b/core/java/android/webkit/WebChromeClient.java
index 5735f29b056f..81aa2f3a05fc 100644
--- a/core/java/android/webkit/WebChromeClient.java
+++ b/core/java/android/webkit/WebChromeClient.java
@@ -414,7 +414,7 @@ public class WebChromeClient {
* @param webView The WebView instance that is initiating the request.
* @param filePathCallback Invoke this callback to supply the list of paths to files to upload,
* or NULL to cancel. Must only be called if the
- * <code>showFileChooser</code> implementations returns true.
+ * {@link #onShowFileChooser} implementation returns true.
* @param fileChooserParams Describes the mode of file chooser to be opened, and options to be
* used with it.
* @return true if filePathCallback will be invoked, false to use default handling.
@@ -517,7 +517,7 @@ public class WebChromeClient {
* @param capture The value of the 'capture' attribute of the input tag
* associated with this file picker.
*
- * @deprecated Use {@link #showFileChooser} instead.
+ * @deprecated Use {@link #onShowFileChooser} instead.
* @hide This method was not published in any SDK version.
*/
@SystemApi