Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apis/PowerManager/IPowerManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,13 @@ namespace WPEFramework
// @param transactionId: transaction id as received in OnPowerModePreChange
// @param delayPeriod: delay in seconds
virtual Core::hresult DelayPowerModeChangeBy(const uint32_t clientId /* @in */, const int transactionId /* @in */, const int delayPeriod /* @in */) = 0;

/** Checks whether the power state is managed by the device */
// @text getPowerStateIsManagedByDevice
// @brief Checks whether the power state is managed by the device
// @param powerStateManagedByDevice: true if power state is managed by the device, otherwise false
// @param success: success
virtual Core::hresult GetPowerStateIsManagedByDevice(bool &powerStateManagedByDevice /* @out */, bool &success /* @out */) = 0;
};

} // namespace Exchange
Expand Down
Loading