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

Commit ac511a9e authored by Nate Myren's avatar Nate Myren
Browse files

Add HISTORY_FLAG_GET_ATTRIBUTION_CHAINS to SystemApi

Fixes: 191512294
Test: build
Change-Id: I0521ed14d92f78d4470b801d873d58fdb86d7a7c
parent e93dca15
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -572,6 +572,7 @@ package android.app {
    field public static final int HISTORY_FLAGS_ALL = 3; // 0x3
    field public static final int HISTORY_FLAG_AGGREGATE = 1; // 0x1
    field public static final int HISTORY_FLAG_DISCRETE = 2; // 0x2
    field public static final int HISTORY_FLAG_GET_ATTRIBUTION_CHAINS = 4; // 0x4
    field public static final String OPSTR_ACCEPT_HANDOVER = "android:accept_handover";
    field public static final String OPSTR_ACCESS_ACCESSIBILITY = "android:access_accessibility";
    field public static final String OPSTR_ACCESS_NOTIFICATIONS = "android:access_notifications";
+1 −2
Original line number Diff line number Diff line
@@ -4562,10 +4562,9 @@ public class AppOpsManager {
     * Flag for querying app op history: assemble attribution chains, and attach the last visible
     * node in the chain to the start as a proxy info. This only applies to discrete accesses.
     *
     * TODO 191512294: Add to @SystemApi
     *
     * @hide
     */
    @SystemApi
    public static final int HISTORY_FLAG_GET_ATTRIBUTION_CHAINS = 1 << 2;

    /**