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

Commit af993869 authored by Venkatarama Avadhani's avatar Venkatarama Avadhani
Browse files

CAS: Add missing @hide annotations

Add the annotations that in the 3 enumeration classes so they are not
public.

Bug: 230377377, 227673974, 233862815
Test: build
Change-Id: Ia02b89069ee6fb85a2f16bcfe306d3482fe4bdb7
parent b55e63fb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@Backing(type="int") @VintfStability
enum ScramblingControl {
  UNSCRAMBLED = 0,
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@Backing(type="int") @VintfStability
enum ScramblingMode {
  RESERVED = 0,
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@Backing(type="int") @VintfStability
enum SessionIntent {
  LIVE = 0,
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.hardware.cas;

/**
 * Enumerates the keys used to scramble the content.
 * @hide
 */
@VintfStability
@Backing(type="int")
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.hardware.cas;

/**
 * The Scrambling Mode.
 * @hide
 */
@VintfStability
@Backing(type="int")
Loading