diff options
| author | 2011-04-20 10:27:37 -0700 | |
|---|---|---|
| committer | 2011-04-20 10:27:38 -0700 | |
| commit | 34d06dd9a83709c0a49b25d79bc1a9567ff45fc6 (patch) | |
| tree | 12bd2e824416ab2edc79515669289ae0946d985d | |
| parent | e85626f33e6988b3314d8978c23923f91c3f49c9 (diff) | |
| parent | 1854ddb6d930b95ceeb6448482e2c76a45935018 (diff) | |
Merge "Deprecate ANCHOR_TYPE and IMAGE_ANCHOR_TYPE from WebView.HitTestResult"
| -rw-r--r-- | core/java/android/webkit/WebView.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index e07e26e4bf5f..b5d049219e82 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -871,8 +871,9 @@ public class WebView extends AbsoluteLayout */ public static final int UNKNOWN_TYPE = 0; /** - * HitTestResult for hitting a HTML::a tag + * @deprecated This type is no longer used. */ + @Deprecated public static final int ANCHOR_TYPE = 1; /** * HitTestResult for hitting a phone number @@ -891,8 +892,9 @@ public class WebView extends AbsoluteLayout */ public static final int IMAGE_TYPE = 5; /** - * HitTestResult for hitting a HTML::a tag which contains HTML::img + * @deprecated This type is no longer used. */ + @Deprecated public static final int IMAGE_ANCHOR_TYPE = 6; /** * HitTestResult for hitting a HTML::a tag with src=http |