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

Commit 505568fa authored by Xiang Wang's avatar Xiang Wang Committed by Automerger Merge Worker
Browse files

Merge "Add @hide annotation to thermal AIDL interfaces" am: afcb8629 am:...

Merge "Add @hide annotation to thermal AIDL interfaces" am: afcb8629 am: 4aa12ed8 am: 1766dfb2

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2328520



Change-Id: I7b3fbc0c02827540eae92dec612b1c9588b7db4b
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 88e6a0ff 1766dfb2
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