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

Commit a8b2419f authored by Stanislav Zholnin's avatar Stanislav Zholnin Committed by Automerger Merge Worker
Browse files

Merge "Add more explanation on difference between aggregate and discrete...

Merge "Add more explanation on difference between aggregate and discrete information." into sc-dev am: 3476ed1d am: 959e1d38

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14411200

Change-Id: Icb002b46e2b344361f489f6c117c94177591c200
parents a4315a36 959e1d38
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -4723,8 +4723,8 @@ public class AppOpsManager {
    }

    /**
     * Flag for querying app op history: get only aggregate information and no
     * discrete accesses.
     * Flag for querying app op history: get only aggregate information (counts of events) and no
     * discret accesses information - specific accesses with timestamp.
     *
     * @see #getHistoricalOps(HistoricalOpsRequest, Executor, Consumer)
     *
@@ -4735,8 +4735,8 @@ public class AppOpsManager {
    public static final int HISTORY_FLAG_AGGREGATE = 1 << 0;

    /**
     * Flag for querying app op history: get only discrete information and no
     * aggregate accesses.
     * Flag for querying app op history: get only discrete access information (only specific
     * accesses with timestamps) and no aggregate information (counts over time).
     *
     * @see #getHistoricalOps(HistoricalOpsRequest, Executor, Consumer)
     *
@@ -4747,7 +4747,7 @@ public class AppOpsManager {
    public static final int HISTORY_FLAG_DISCRETE = 1 << 1;

    /**
     * Flag for querying app op history: get all types of historical accesses.
     * Flag for querying app op history: get all types of historical access information.
     *
     * @see #getHistoricalOps(HistoricalOpsRequest, Executor, Consumer)
     *