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

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

Snap for 11554395 from 39a5078b to 24Q3-release

Change-Id: Ib6fb97ac31bbe1e918263bf02eedb232b41b63e6
parents 7243dc6c 39a5078b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -346,6 +346,12 @@ cc_aconfig_library {
    mode: "test",
}

cc_aconfig_library {
    name: "android.os.flags-aconfig-cc-host",
    aconfig_declarations: "android.os.flags-aconfig",
    host_supported: true,
}

// VirtualDeviceManager
cc_aconfig_library {
    name: "android.companion.virtualdevice.flags-aconfig-cc",
+1 −0
Original line number Diff line number Diff line
@@ -15750,6 +15750,7 @@ package android.graphics {
    method public void drawRect(@NonNull android.graphics.RectF, @NonNull android.graphics.Paint);
    method public void drawRect(@NonNull android.graphics.Rect, @NonNull android.graphics.Paint);
    method public void drawRect(float, float, float, float, @NonNull android.graphics.Paint);
    method @FlaggedApi("com.android.graphics.hwui.flags.draw_region") public void drawRegion(@NonNull android.graphics.Region, @NonNull android.graphics.Paint);
    method public void drawRenderNode(@NonNull android.graphics.RenderNode);
    method public void drawRoundRect(@NonNull android.graphics.RectF, float, float, @NonNull android.graphics.Paint);
    method public void drawRoundRect(float, float, float, float, float, float, @NonNull android.graphics.Paint);
+0 −2
Original line number Diff line number Diff line
@@ -1624,8 +1624,6 @@ package android.hardware.camera2.params {
package android.hardware.devicestate {

  @FlaggedApi("android.hardware.devicestate.feature.flags.device_state_property_api") public final class DeviceState {
    ctor @Deprecated public DeviceState(@IntRange(from=android.hardware.devicestate.DeviceStateManager.MINIMUM_DEVICE_STATE_IDENTIFIER, to=android.hardware.devicestate.DeviceStateManager.MAXIMUM_DEVICE_STATE_IDENTIFIER) int, @NonNull String, int);
    ctor public DeviceState(@IntRange(from=android.hardware.devicestate.DeviceStateManager.MINIMUM_DEVICE_STATE_IDENTIFIER, to=android.hardware.devicestate.DeviceStateManager.MAXIMUM_DEVICE_STATE_IDENTIFIER) int, @NonNull String, @NonNull java.util.Set<java.lang.Integer>);
    field public static final int PROPERTY_POLICY_AVAILABLE_FOR_APP_REQUEST = 8; // 0x8
  }

+0 −14
Original line number Diff line number Diff line
@@ -6053,20 +6053,6 @@ public class ActivityManager {
        }
    }

    /**
     * Checks if the "modern" broadcast queue is enabled.
     *
     * @hide
     */
    @RequiresPermission(android.Manifest.permission.DUMP)
    public boolean isModernBroadcastQueueEnabled() {
        try {
            return getService().isModernBroadcastQueueEnabled();
        } catch (RemoteException e) {
            throw e.rethrowFromSystemServer();
        }
    }

    /**
     * Checks if the process represented by the given {@code pid} is frozen.
     *
+0 −6
Original line number Diff line number Diff line
@@ -225,12 +225,6 @@ public abstract class ActivityManagerInternal {
     */
    public abstract boolean isSystemReady();

    /**
     * @return {@code true} if system is using the "modern" broadcast queue,
     *         {@code false} otherwise.
     */
    public abstract boolean isModernQueueEnabled();

    /**
     * Enforce capability restrictions on use of the given BroadcastOptions
     */
Loading