| 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 "build/build_config.h" | 5 #include "build/build_config.h" | 
| 6 #include "media/base/media_switches.h" | 6 #include "media/base/media_switches.h" | 
| 7 #include "ppapi/features/features.h" | 7 #include "ppapi/features/features.h" | 
| 8 | 8 | 
| 9 namespace switches { | 9 namespace switches { | 
| 10 | 10 | 
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 174 // Enables support for External Clear Key (ECK) key system for testing on | 174 // Enables support for External Clear Key (ECK) key system for testing on | 
| 175 // supported platforms. On platforms that do not support ECK, this feature has | 175 // supported platforms. On platforms that do not support ECK, this feature has | 
| 176 // no effect. | 176 // no effect. | 
| 177 const base::Feature kExternalClearKeyForTesting{ | 177 const base::Feature kExternalClearKeyForTesting{ | 
| 178     "external-clear-key-for-testing", base::FEATURE_DISABLED_BY_DEFAULT}; | 178     "external-clear-key-for-testing", base::FEATURE_DISABLED_BY_DEFAULT}; | 
| 179 | 179 | 
| 180 #if defined(OS_ANDROID) | 180 #if defined(OS_ANDROID) | 
| 181 // Replaces WPMA by the MediaPlayerRenderer for HLS and fallback playback. | 181 // Replaces WPMA by the MediaPlayerRenderer for HLS and fallback playback. | 
| 182 const base::Feature kAndroidMediaPlayerRenderer{ | 182 const base::Feature kAndroidMediaPlayerRenderer{ | 
| 183     "android-media-player-renderer", base::FEATURE_ENABLED_BY_DEFAULT}; | 183     "android-media-player-renderer", base::FEATURE_ENABLED_BY_DEFAULT}; | 
|  | 184 | 
|  | 185 // Lock the screen orientation when a video goes fullscreen. | 
|  | 186 const base::Feature kVideoFullscreenOrientationLock{ | 
|  | 187     "VideoFullscreenOrientationLock", base::FEATURE_DISABLED_BY_DEFAULT}; | 
| 184 #endif | 188 #endif | 
| 185 | 189 | 
| 186 }  // namespace media | 190 }  // namespace media | 
| OLD | NEW | 
|---|