blob: b198c3392ab33f03d78cba44e8742a824e57958d [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.device.power.test;
using zx;
using fuchsia.device;
protocol TestDevice {
/// Add Test Device with some powerargs
AddDeviceWithPowerArgs(vector<fuchsia.device.DevicePowerStateInfo> info) -> () error zx.status;
/// Get current power state of the device
GetCurrentDevicePowerState() -> (fuchsia.device.DevicePowerState cur_state) error zx.status;
};