summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/PluginData.java
diff options
context:
space:
mode:
authorMathew Inwood <mathewi@google.com>2018-08-16 19:18:28 +0100
committerMathew Inwood <mathewi@google.com>2018-08-16 19:18:28 +0100
commit42afea26b8ad5ff2f6164d7d8153a90891fd5314 (patch)
tree6438fef2582035b875e54a82f77624ded3a0c5d4 /core/java/android/webkit/PluginData.java
parent43f3f60ec01a1d658cbff9386a7fbf8a839894b9 (diff)
Add @UnsupportedAppUsage annotations
For packages: android.webkit This is an automatically generated CL. See go/UnsupportedAppUsage for more details. Exempted-From-Owner-Approval: Mechanical changes to the codebase which have been approved by Android API council and announced on android-eng@ Bug: 110868826 Test: m Change-Id: Ic22415d3e70a3b75a6418f96beb371d0445c7484 Merged-In: I41643e1e47391a12b0aed3058b3d9987a8e6ee2f
Diffstat (limited to 'core/java/android/webkit/PluginData.java')
-rw-r--r--core/java/android/webkit/PluginData.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/webkit/PluginData.java b/core/java/android/webkit/PluginData.java
index 88fc9b70cc7a..8aeeb1c53241 100644
--- a/core/java/android/webkit/PluginData.java
+++ b/core/java/android/webkit/PluginData.java
@@ -16,6 +16,7 @@
package android.webkit;
+import android.annotation.UnsupportedAppUsage;
import java.io.InputStream;
import java.util.Map;
@@ -69,6 +70,7 @@ public final class PluginData {
* deprecated, so is this class.
*/
@Deprecated
+ @UnsupportedAppUsage
public PluginData(
InputStream stream,
long length,
@@ -90,6 +92,7 @@ public final class PluginData {
* deprecated, so is this class.
*/
@Deprecated
+ @UnsupportedAppUsage
public InputStream getInputStream() {
return mStream;
}
@@ -104,6 +107,7 @@ public final class PluginData {
* deprecated, so is this class.
*/
@Deprecated
+ @UnsupportedAppUsage
public long getContentLength() {
return mContentLength;
}
@@ -121,6 +125,7 @@ public final class PluginData {
* deprecated, so is this class.
*/
@Deprecated
+ @UnsupportedAppUsage
public Map<String, String[]> getHeaders() {
return mHeaders;
}
@@ -135,6 +140,7 @@ public final class PluginData {
* deprecated, so is this class.
*/
@Deprecated
+ @UnsupportedAppUsage
public int getStatusCode() {
return mStatusCode;
}