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

Commit 2f160d49 authored by Sudheer Shanka's avatar Sudheer Shanka
Browse files

Remove the APIs that were added to collect broadcast timestamps.

Bug: 325136414
Test: atest tests/app/src/android/app/cts/BroadcastOptionsTest.java
Change-Id: I76a6d05a1d42395dfc9739f887a5e8c6a559796e
parent a7a47f65
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -5464,15 +5464,11 @@ package android.app {
    method public int getDeferralPolicy();
    method @Nullable public String getDeliveryGroupMatchingKey();
    method public int getDeliveryGroupPolicy();
    method @FlaggedApi("android.app.bcast_event_timestamps") public long getEventTriggerTimestampMillis();
    method @FlaggedApi("android.app.bcast_event_timestamps") public long getRemoteEventTriggerTimestampMillis();
    method public boolean isShareIdentityEnabled();
    method @NonNull public static android.app.BroadcastOptions makeBasic();
    method @NonNull public android.app.BroadcastOptions setDeferralPolicy(int);
    method @NonNull public android.app.BroadcastOptions setDeliveryGroupMatchingKey(@NonNull String, @NonNull String);
    method @NonNull public android.app.BroadcastOptions setDeliveryGroupPolicy(int);
    method @FlaggedApi("android.app.bcast_event_timestamps") public void setEventTriggerTimestampMillis(long);
    method @FlaggedApi("android.app.bcast_event_timestamps") public void setRemoteEventTriggerTimestampMillis(long);
    method @NonNull public android.app.BroadcastOptions setShareIdentityEnabled(boolean);
    method @NonNull public android.os.Bundle toBundle();
    field public static final int DEFERRAL_POLICY_DEFAULT = 0; // 0x0
+0 −78
Original line number Diff line number Diff line
@@ -18,8 +18,6 @@ package android.app;

import static android.app.ActivityOptions.BackgroundActivityStartMode;

import android.annotation.CurrentTimeMillisLong;
import android.annotation.FlaggedApi;
import android.annotation.IntDef;
import android.annotation.IntRange;
import android.annotation.NonNull;
@@ -69,8 +67,6 @@ public class BroadcastOptions extends ComponentOptions {
    private @Nullable BundleMerger mDeliveryGroupExtrasMerger;
    private @Nullable IntentFilter mDeliveryGroupMatchingFilter;
    private @DeferralPolicy int mDeferralPolicy;
    private @CurrentTimeMillisLong long mEventTriggerTimestampMillis;
    private @CurrentTimeMillisLong long mRemoteEventTriggerTimestampMillis;

    /** @hide */
    @IntDef(flag = true, prefix = { "FLAG_" }, value = {
@@ -195,18 +191,6 @@ public class BroadcastOptions extends ComponentOptions {
    private static final String KEY_ID_FOR_RESPONSE_EVENT =
            "android:broadcast.idForResponseEvent";

    /**
     * Corresponds to {@link #setEventTriggerTimestampMillis(long)}.
     */
    private static final String KEY_EVENT_TRIGGER_TIMESTAMP =
            "android:broadcast.eventTriggerTimestamp";

    /**
     * Corresponds to {@link #setRemoteEventTriggerTimestampMillis(long)}.
     */
    private static final String KEY_REMOTE_EVENT_TRIGGER_TIMESTAMP =
            "android:broadcast.remoteEventTriggerTimestamp";

    /**
     * Corresponds to {@link #setDeliveryGroupPolicy(int)}.
     */
@@ -359,8 +343,6 @@ public class BroadcastOptions extends ComponentOptions {
        mRequireNoneOfPermissions = opts.getStringArray(KEY_REQUIRE_NONE_OF_PERMISSIONS);
        mRequireCompatChangeId = opts.getLong(KEY_REQUIRE_COMPAT_CHANGE_ID, CHANGE_INVALID);
        mIdForResponseEvent = opts.getLong(KEY_ID_FOR_RESPONSE_EVENT);
        mEventTriggerTimestampMillis = opts.getLong(KEY_EVENT_TRIGGER_TIMESTAMP);
        mRemoteEventTriggerTimestampMillis = opts.getLong(KEY_REMOTE_EVENT_TRIGGER_TIMESTAMP);
        mDeliveryGroupPolicy = opts.getInt(KEY_DELIVERY_GROUP_POLICY,
                DELIVERY_GROUP_POLICY_ALL);
        mDeliveryGroupMatchingNamespaceFragment = opts.getString(KEY_DELIVERY_GROUP_NAMESPACE);
@@ -806,60 +788,6 @@ public class BroadcastOptions extends ComponentOptions {
        return mIdForResponseEvent;
    }

    /**
     * Set the timestamp for the event that triggered this broadcast, in
     * {@link System#currentTimeMillis()} timebase.
     *
     * <p> For instance, if this broadcast is for a push message, then this timestamp
     * could correspond to when the device received the message.
     *
     * @param timestampMillis the timestamp in {@link System#currentTimeMillis()} timebase that
     *                        correspond to the event that triggered this broadcast.
     */
    @FlaggedApi(android.app.Flags.FLAG_BCAST_EVENT_TIMESTAMPS)
    public void setEventTriggerTimestampMillis(@CurrentTimeMillisLong long timestampMillis) {
        mEventTriggerTimestampMillis = timestampMillis;
    }

    /**
     * Return the timestamp for the event that triggered this broadcast, in
     * {@link System#currentTimeMillis()} timebase.
     *
     * @return the timestamp in {@link System#currentTimeMillis()} timebase that was previously
     *         set using {@link #setEventTriggerTimestampMillis(long)}.
     */
    @FlaggedApi(android.app.Flags.FLAG_BCAST_EVENT_TIMESTAMPS)
    public @CurrentTimeMillisLong long getEventTriggerTimestampMillis() {
        return mEventTriggerTimestampMillis;
    }

    /**
     * Set the timestamp for the remote event, if any, that triggered this broadcast, in
     * {@link System#currentTimeMillis()} timebase.
     *
     * <p> For instance, if this broadcast is for a push message, then this timestamp
     * could correspond to when the message originated remotely.
     *
     * @param timestampMillis the timestamp in {@link System#currentTimeMillis()} timebase that
     *                        correspond to the remote event that triggered this broadcast.
     */
    @FlaggedApi(android.app.Flags.FLAG_BCAST_EVENT_TIMESTAMPS)
    public void setRemoteEventTriggerTimestampMillis(@CurrentTimeMillisLong long timestampMillis) {
        mRemoteEventTriggerTimestampMillis = timestampMillis;
    }

    /**
     * Return the timestamp for the remote event that triggered this broadcast, in
     * {@link System#currentTimeMillis()} timebase.
     *
     * @return the timestamp in {@link System#currentTimeMillis()} timebase that was previously
     *         set using {@link #setRemoteEventTriggerTimestampMillis(long)}}.
     */
    @FlaggedApi(android.app.Flags.FLAG_BCAST_EVENT_TIMESTAMPS)
    public @CurrentTimeMillisLong long getRemoteEventTriggerTimestampMillis() {
        return mRemoteEventTriggerTimestampMillis;
    }

    /**
     * Sets deferral policy for this broadcast that specifies how this broadcast
     * can be deferred for delivery at some future point.
@@ -1195,12 +1123,6 @@ public class BroadcastOptions extends ComponentOptions {
        if (mIdForResponseEvent != 0) {
            b.putLong(KEY_ID_FOR_RESPONSE_EVENT, mIdForResponseEvent);
        }
        if (mEventTriggerTimestampMillis > 0) {
            b.putLong(KEY_EVENT_TRIGGER_TIMESTAMP, mEventTriggerTimestampMillis);
        }
        if (mRemoteEventTriggerTimestampMillis > 0) {
            b.putLong(KEY_REMOTE_EVENT_TRIGGER_TIMESTAMP, mRemoteEventTriggerTimestampMillis);
        }
        if (mDeliveryGroupPolicy != DELIVERY_GROUP_POLICY_ALL) {
            b.putInt(KEY_DELIVERY_GROUP_POLICY, mDeliveryGroupPolicy);
        }