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

Commit 057df147 authored by Xiang Wang's avatar Xiang Wang
Browse files

Add @hide annotation to thermal AIDL interfaces

Bug: b/205762943
Test: n/a
Change-Id: Ia1eb95d6b64c524606901050b45180e851231043
parent e23844b7
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.thermal;
/* @hide */
@VintfStability
parcelable CoolingDevice {
  android.hardware.thermal.CoolingType type;
+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.thermal;
/* @hide */
@Backing(type="int") @VintfStability
enum CoolingType {
  FAN = 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.thermal;
/* @hide */
@VintfStability
interface IThermal {
  android.hardware.thermal.CoolingDevice[] getCoolingDevices();
+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.thermal;
/* @hide */
@VintfStability
interface IThermalChangedCallback {
  oneway void notifyThrottling(in android.hardware.thermal.Temperature temperature);
+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.thermal;
/* @hide */
@VintfStability
parcelable Temperature {
  android.hardware.thermal.TemperatureType type;
Loading