Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c74b14c authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Renamed ViewNode's getAutoFillHints() to getAutofillHints()" into oc-dev am: cf7cb9c9

am: 1f59e1b2

Change-Id: I8ddce0c944404386f6b0f291805215ef369b2812
parents 7fd27722 1f59e1b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6626,7 +6626,7 @@ package android.app.assist {
  public static class AssistStructure.ViewNode {
    method public float getAlpha();
    method public java.lang.String[] getAutoFillHints();
    method public java.lang.String[] getAutofillHints();
    method public android.view.autofill.AutofillId getAutofillId();
    method public java.lang.String[] getAutofillOptions();
    method public int getAutofillType();
+1 −1
Original line number Diff line number Diff line
@@ -6871,7 +6871,7 @@ package android.app.assist {
  public static class AssistStructure.ViewNode {
    method public float getAlpha();
    method public java.lang.String[] getAutoFillHints();
    method public java.lang.String[] getAutofillHints();
    method public android.view.autofill.AutofillId getAutofillId();
    method public java.lang.String[] getAutofillOptions();
    method public int getAutofillType();
+1 −1
Original line number Diff line number Diff line
@@ -6656,7 +6656,7 @@ package android.app.assist {
  public static class AssistStructure.ViewNode {
    method public float getAlpha();
    method public java.lang.String[] getAutoFillHints();
    method public java.lang.String[] getAutofillHints();
    method public android.view.autofill.AutofillId getAutofillId();
    method public java.lang.String[] getAutofillOptions();
    method public int getAutofillType();
+10 −0
Original line number Diff line number Diff line
@@ -964,6 +964,16 @@ public class AssistStructure implements Parcelable {
         *
         * @return The hints for this view
         */
        @Nullable public String[] getAutofillHints() {
            return mAutofillHints;
        }

        /**
         * @hide
         * @deprecated use getAutofillHints() instead.
         */
        // TODO(b/33197203): remove once clients don't use it anymore...
        @Deprecated
        @Nullable public String[] getAutoFillHints() {
            return mAutofillHints;
        }