diff options
| author | Ashley Rose <ashleyrose@google.com> | 2019-03-15 17:32:56 -0400 |
|---|---|---|
| committer | Ashley Rose <ashleyrose@google.com> | 2019-03-18 16:05:55 -0400 |
| commit | 73abdd3c59cb4afb962f9d52466f517830cdb027 (patch) | |
| tree | 9441543d03c7f0a9433388b7557d9789b6a4a28d /core/java/android/webkit/WebView.java | |
| parent | ecfad0220bb514ea23e77288b7569422929444e2 (diff) | |
Rename @EnumEntry and @FlagEntry
Test: atest CtsViewInspectorAnnotationProcessorTestCases
Bug: 127531820
Exempt-From-Owner-Approval: Annotation-only change
Change-Id: Id293e2b2ac9cf7bf2aaeb28645471ea227bb587b
Diffstat (limited to 'core/java/android/webkit/WebView.java')
| -rw-r--r-- | core/java/android/webkit/WebView.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 034cabd5702e..26dba45666fc 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -2292,9 +2292,9 @@ public class WebView extends AbsoluteLayout * @return the requested renderer priority policy. */ @InspectableProperty(hasAttributeId = false, enumMapping = { - @InspectableProperty.EnumMap(name = "waived", value = RENDERER_PRIORITY_WAIVED), - @InspectableProperty.EnumMap(name = "bound", value = RENDERER_PRIORITY_BOUND), - @InspectableProperty.EnumMap(name = "important", value = RENDERER_PRIORITY_IMPORTANT) + @InspectableProperty.EnumEntry(name = "waived", value = RENDERER_PRIORITY_WAIVED), + @InspectableProperty.EnumEntry(name = "bound", value = RENDERER_PRIORITY_BOUND), + @InspectableProperty.EnumEntry(name = "important", value = RENDERER_PRIORITY_IMPORTANT) }) @RendererPriority public int getRendererRequestedPriority() { |
