| Index: ash/system/audio/tray_audio_delegate.h
|
| diff --git a/ash/system/audio/tray_audio_delegate.h b/ash/system/audio/tray_audio_delegate.h
|
| index 8a6260f702b9f1773225af870bd545a0cae47eac..94ac79e7cac0cb096977f18516e097511f8f69aa 100644
|
| --- a/ash/system/audio/tray_audio_delegate.h
|
| +++ b/ash/system/audio/tray_audio_delegate.h
|
| @@ -12,6 +12,10 @@ class ASH_EXPORT TrayAudioDelegate {
|
| public:
|
|
|
| enum { kNoAudioDeviceIcon = -1 };
|
| + enum AudioChannelMode {
|
| + NORMAL,
|
| + LEFT_RIGHT_SWAPPED,
|
| + };
|
|
|
| virtual ~TrayAudioDelegate() {}
|
|
|
| @@ -40,6 +44,9 @@ class ASH_EXPORT TrayAudioDelegate {
|
|
|
| // Sets the volume level of the output device in the range 0%-100%
|
| virtual void SetOutputVolumeLevel(int level) = 0;
|
| +
|
| + // Sets the audio channel mode.
|
| + virtual void SetAudioChannelMode(AudioChannelMode mode) = 0;
|
| };
|
|
|
| } // namespace system
|
|
|