OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/base/media_switches.h" | 5 #include "media/base/media_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // Allow users to specify a custom buffer size for debugging purpose. | 9 // Allow users to specify a custom buffer size for debugging purpose. |
10 const char kAudioBufferSize[] = "audio-buffer-size"; | 10 const char kAudioBufferSize[] = "audio-buffer-size"; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // Use CRAS, the ChromeOS audio server. | 87 // Use CRAS, the ChromeOS audio server. |
88 const char kUseCras[] = "use-cras"; | 88 const char kUseCras[] = "use-cras"; |
89 #endif | 89 #endif |
90 | 90 |
91 // Use fake device for Media Stream to replace actual camera and microphone. | 91 // Use fake device for Media Stream to replace actual camera and microphone. |
92 const char kUseFakeDeviceForMediaStream[] = "use-fake-device-for-media-stream"; | 92 const char kUseFakeDeviceForMediaStream[] = "use-fake-device-for-media-stream"; |
93 | 93 |
94 // Use a raw video file as fake video capture device. | 94 // Use a raw video file as fake video capture device. |
95 const char kUseFileForFakeVideoCapture[] = "use-file-for-fake-video-capture"; | 95 const char kUseFileForFakeVideoCapture[] = "use-file-for-fake-video-capture"; |
96 | 96 |
| 97 // Enables support for inband text tracks in media content. |
| 98 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; |
| 99 |
97 } // namespace switches | 100 } // namespace switches |
OLD | NEW |