summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebView.java
diff options
context:
space:
mode:
authorFelipe Leme <felipeal@google.com>2019-04-12 11:53:16 -0700
committerFelipe Leme <felipeal@google.com>2019-04-15 09:36:25 -0700
commitef1c0b36ab402c9f936220dd4f64f4ac96f52e37 (patch)
treeec760dfe4ce4b8e8135ac3e83ae561c7eb8ecefd /core/java/android/webkit/WebView.java
parent3403f2d85e7e5dd2413439a9e22ba571f91e1c2f (diff)
DO NOT MERGE - Removed ContentCapture support from standard SDK toolkit.
Test: atest CtsContentCaptureServiceTestCases Test: m update-api Test: make ds-docs Fixes: 129982633 Change-Id: I5a0fa4231d0222638830c1abd8015d9f2635996a
Diffstat (limited to 'core/java/android/webkit/WebView.java')
-rw-r--r--core/java/android/webkit/WebView.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index 26dba45666fc..137b67c6e63e 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -413,9 +413,6 @@ public class WebView extends AbsoluteLayout
if (getImportantForAutofill() == IMPORTANT_FOR_AUTOFILL_AUTO) {
setImportantForAutofill(IMPORTANT_FOR_AUTOFILL_YES);
}
- if (getImportantForContentCapture() == IMPORTANT_FOR_CONTENT_CAPTURE_AUTO) {
- setImportantForContentCapture(IMPORTANT_FOR_CONTENT_CAPTURE_YES);
- }
if (context == null) {
throw new IllegalArgumentException("Invalid context argument");
@@ -2799,11 +2796,6 @@ public class WebView extends AbsoluteLayout
}
@Override
- public void onProvideContentCaptureStructure(ViewStructure structure, int flags) {
- mProvider.getViewDelegate().onProvideContentCaptureStructure(structure, flags);
- }
-
- @Override
public void autofill(SparseArray<AutofillValue>values) {
mProvider.getViewDelegate().autofill(values);
}