Chromium Code Reviews| Index: chromecast/public/media/audio_device_ids.h |
| diff --git a/chromecast/public/media/audio_device_ids.h b/chromecast/public/media/audio_device_ids.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..43e3b8aebd917bf873e88896fdca62cef8505e71 |
| --- /dev/null |
| +++ b/chromecast/public/media/audio_device_ids.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
|
kmackay
2017/02/17 06:11:25
2017
bshaya
2017/02/17 18:26:54
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROMECAST_PUBLIC_MEDIA_AUDIO_DEVICE_IDS_H_ |
| +#define CHROMECAST_PUBLIC_MEDIA_AUDIO_DEVICE_IDS_H_ |
| + |
| +namespace chromecast { |
| +namespace media { |
| + |
| +extern const char kAlarmAudioDeviceId[]; |
| +extern const char kEarconAudioDeviceId[]; |
| +extern const char kTtsAudioDeviceId[]; |
| +extern const char kSystemAudioDeviceId[]; |
| + |
| +const int kDefaultAudioStreamType = 0; |
| +const int kAlarmAudioStreamType = 1; |
| +const int kTtsAudioStreamType = 2; |
| + |
| +} // namespace media |
| +} // namespace chromecast |
| + |
| +#endif // CHROMECAST_PUBLIC_MEDIA_AUDIO_DEVICE_IDS_H_ |