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

Commit 6d61864d authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 12702769 from f523a0a1 to 25Q1-release

Change-Id: I17e74e6c0ea3cf59a3f396e5dab9ae9dbd0ceee2
parents 7824c503 f523a0a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ enum AlertUrgency {
    PAST,

    /**
     * Unknown rgency.
     * Unknown urgency.
     */
    UNKNOWN,
}
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ parcelable Coordinate {
    /**
     * Longitude of the cooridinate.
     *
     * <p>Longitude is in the range of -90 to 90.
     * <p>Longitude is in the range of -180 to 180.
     */
    double longitude;
}
+3 −2
Original line number Diff line number Diff line
@@ -17,9 +17,10 @@
package android.hardware.broadcastradio;

/**
 * Geographic code reprensenting location in alert message
 * Geographic code reprensenting location in alert message.
 *
 * <p>(see ITU-T X.1303 bis for more info).
 * <p>Geocode is mainly for information display instead of parsing on radio application side. See
 * ITU-T X.1303 bis for more info.
 */
@VintfStability
@JavaDerive(equals=true, toString=true)
+7 −7
Original line number Diff line number Diff line
@@ -23,23 +23,23 @@ package android.hardware.graphics.common;
@Backing(type="int")
enum DisplayHotplugEvent {
    /**
     * Display is successfully connected.
     * Connected may be called more than once and the behavior of subsequent
     * calls is that SurfaceFlinger queries the display properties again.
     * Display was successfully connected.
     * CONNECTED may be emitted more than once and the behavior of subsequent
     * events is that SurfaceFlinger queries the display properties again.
     */
    CONNECTED = 0,

    /** Display is successfully disconnected */
    /** Display was successfully disconnected */
    DISCONNECTED = 1,

    /** Display is plugged in, but an unknown error occurred */
    /** Unknown error occurred */
    ERROR_UNKNOWN = -1,

    /** Display is plugged in, but incompatible cable error detected */
    /** Display was plugged in, but incompatible cable error detected */
    ERROR_INCOMPATIBLE_CABLE = -2,

    /**
     * Display is plugged in, but exceeds the max number of
     * Display was plugged in, but exceeds the max number of
     * displays that can be simultaneously connected
     */
    ERROR_TOO_MANY_DISPLAYS = -3,
+1 −0
Original line number Diff line number Diff line
@@ -36,4 +36,5 @@ package android.hardware.graphics.composer3;
parcelable DisplayIdentification {
  byte port;
  byte[] data;
  android.hardware.graphics.composer3.ScreenPartStatus screenPartStatus = android.hardware.graphics.composer3.ScreenPartStatus.UNSUPPORTED;
}
Loading