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

Commit 448f035f authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add APP SessionTag" into main

parents f803533c 5189925e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -38,4 +38,5 @@ enum SessionTag {
  SURFACEFLINGER,
  HWUI,
  GAME,
  APP,
}
+10 −2
Original line number Diff line number Diff line
@@ -30,12 +30,20 @@ enum SessionTag {
    SURFACEFLINGER,

    /**
     * This tag is used to mark HWUI hint sessions.
     * This tag is used to mark hint sessions created by HWUI.
     */
    HWUI,

    /**
     * This tag is used to mark Game hint sessions.
     * This tag is used to mark hint sessions created by applications that are
     * categorized as games.
     */
    GAME,

    /**
     * This tag is used to mark the hint session is created by the application.
     * If an applications is categorized as game, then GAME should be used
     * instead.
     */
    APP,
}