Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
kmackay
2017/02/17 06:11:25
2017
bshaya
2017/02/17 18:26:54
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chromecast/public/media/audio_device_ids.h" | |
| 6 | |
| 7 namespace chromecast { | |
| 8 namespace media { | |
| 9 | |
| 10 const char kAlarmAudioDeviceId[] = "assistant-alarm"; | |
| 11 const char kEarconAudioDeviceId[] = "default-earcon"; | |
| 12 const char kTtsAudioDeviceId[] = "assistant-tts"; | |
| 13 const char kSystemAudioDeviceId[] = "assistant-system"; | |
|
kmackay
2017/02/17 06:11:25
I'm not convinced that this is the correct name ba
gfhuang
2017/02/17 18:27:21
why change from enum to string?
we never put any .
bshaya
2017/02/17 19:05:13
+kmackay
| |
| 14 | |
| 15 } // namespace media | |
| 16 } // namespace chromecast | |
| OLD | NEW |