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

Commit 3387fafd authored by Jean Chalard's avatar Jean Chalard Committed by Android Git Automerger
Browse files

am 33cbd1fb: Align a compat file for a change in native signature

* commit '33cbd1fb':
  Align a compat file for a change in native signature
parents f16021ef 33cbd1fb
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -18,11 +18,10 @@ package com.android.inputmethod.keyboard;

public class ProximityInfo {
    public long getNativeProximityInfo() { return 0l; }
    private static native long setProximityInfoNative(String locale,
            int displayWidth, int displayHeight, int gridWidth, int gridHeight,
            int mostCommonKeyWidth, int mostCommonKeyHeight, int[] proximityCharsArray,
            int keyCount, int[] keyXCoordinates, int[] keyYCoordinates, int[] keyWidths,
            int[] keyHeights, int[] keyCharCodes, float[] sweetSpotCenterXs,
    private static native long setProximityInfoNative(int displayWidth, int displayHeight,
            int gridWidth, int gridHeight, int mostCommonKeyWidth, int mostCommonKeyHeight,
            int[] proximityCharsArray, int keyCount, int[] keyXCoordinates, int[] keyYCoordinates,
            int[] keyWidths, int[] keyHeights, int[] keyCharCodes, float[] sweetSpotCenterXs,
            float[] sweetSpotCenterYs, float[] sweetSpotRadii);
    private static native void releaseProximityInfoNative(long nativeProximityInfo);
}