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

Commit afcb8629 authored by Xiang Wang's avatar Xiang Wang Committed by Gerrit Code Review
Browse files

Merge "Add @hide annotation to thermal AIDL interfaces"

parents cd290e90 057df147
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