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..fd77e68efe75e82e39ade5d2977fc2e79b6e48dc |
| --- /dev/null |
| +++ b/chromecast/public/media/audio_device_ids.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// 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; |
|
tianyuwang1
2017/02/18 00:17:09
do we still need the int types?
bshaya
2017/02/21 23:30:14
+kmackay
The int types are currently used for volu
tianyuwang1
2017/02/23 20:25:37
We can get rid of the int type. Just use string i
kmackay
2017/02/23 20:32:00
Agree, see https://eureka-internal-review.git.corp
bshaya
2017/02/24 00:17:06
I'm leaving this for now, since Ken is already rem
|
| +const int kAlarmAudioStreamType = 1; |
| +const int kTtsAudioStreamType = 2; |
| + |
| +} // namespace media |
| +} // namespace chromecast |
| + |
| +#endif // CHROMECAST_PUBLIC_MEDIA_AUDIO_DEVICE_IDS_H_ |