Scott Randolph | 46bc128 | 2017-07-27 18:26:27 -0700 | [diff] [blame] | 1 | #include "AudioControlCallback.h" |
| 2 | |
| 3 | namespace android { |
| 4 | namespace hardware { |
| 5 | namespace automotive { |
| 6 | namespace audiocontrol { |
| 7 | namespace V1_0 { |
| 8 | namespace implementation { |
| 9 | |
| 10 | // Methods from ::android::hardware::automotive::audiocontrol::V1_0::IAudioControlCallback follow. |
| 11 | Return<void> AudioControlCallback::suggestPausePlayers() { |
| 12 | // TODO implement in framework (this is called by the HAL implementation when needed) |
| 13 | return Void(); |
| 14 | } |
| 15 | |
| 16 | Return<void> AudioControlCallback::suggestStopPlayers() { |
| 17 | // TODO implement in framework (this is called by the HAL implementation when needed) |
| 18 | return Void(); |
| 19 | } |
| 20 | |
| 21 | Return<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 |