| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 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 "components/audio_modem/audio_modem_switches.h" | |
| 6 | |
| 7 namespace switches { | |
| 8 | |
| 9 // Directory to dump encoded tokens to, for debugging. | |
| 10 // If empty (the default), tokens are not dumped. | |
| 11 // If invalid (not a writable directory), Chrome will crash! | |
| 12 const char kAudioModemDumpTokensToDir[] = "audio-modem-dump-tokens-to-dir"; | |
| 13 | |
| 14 // Allow broadcast of audible audio tokens. Defaults to true. | |
| 15 const char kAudioModemEnableAudibleBroadcast[] = | |
| 16 "audio-modem-enable-audible-broadcast"; | |
| 17 | |
| 18 // Allow broadcast of inaudible audio tokens. Defaults to true. | |
| 19 const char kAudioModemEnableInaudibleBroadcast[] = | |
| 20 "audio-modem-enable-inaudible-broadcast"; | |
| 21 | |
| 22 } // namespace switches | |
| OLD | NEW |