blob: ea79cada0c8304b4bcdef6b09115291faf76001f [file] [log] [blame]
Scott Randolph46bc1282017-07-27 18:26:27 -07001#include "AudioControlCallback.h"
2
3namespace android {
4namespace hardware {
5namespace automotive {
6namespace audiocontrol {
7namespace V1_0 {
8namespace implementation {
9
10// Methods from ::android::hardware::automotive::audiocontrol::V1_0::IAudioControlCallback follow.
11Return<void> AudioControlCallback::suggestPausePlayers() {
12 // TODO implement in framework (this is called by the HAL implementation when needed)
13 return Void();
14}
15
16Return<void> AudioControlCallback::suggestStopPlayers() {
17 // TODO implement in framework (this is called by the HAL implementation when needed)
18 return Void();
19}
20
21Return<void> AudioControlCallback::resumePlayers() {
22 // TODO implement in framework (this is called by the HAL implementation when needed)
23 return Void();
24}
25
26} // namespace implementation
27} // namespace V1_0
28} // namespace audiocontrol
29} // namespace automotive
30} // namespace hardware
31} // namespace android