Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: media/base/media_switches.cc

Issue 2547533002: Add flags to enable screen orientation lock for fullscreen video on Android. (Closed)
Patch Set: rebased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 // Enables support for External Clear Key (ECK) key system for testing on 179 // Enables support for External Clear Key (ECK) key system for testing on
180 // supported platforms. On platforms that do not support ECK, this feature has 180 // supported platforms. On platforms that do not support ECK, this feature has
181 // no effect. 181 // no effect.
182 const base::Feature kExternalClearKeyForTesting{ 182 const base::Feature kExternalClearKeyForTesting{
183 "external-clear-key-for-testing", base::FEATURE_DISABLED_BY_DEFAULT}; 183 "external-clear-key-for-testing", base::FEATURE_DISABLED_BY_DEFAULT};
184 184
185 #if defined(OS_ANDROID) 185 #if defined(OS_ANDROID)
186 // Replaces WPMA by the MediaPlayerRenderer for HLS and fallback playback. 186 // Replaces WPMA by the MediaPlayerRenderer for HLS and fallback playback.
187 const base::Feature kAndroidMediaPlayerRenderer{ 187 const base::Feature kAndroidMediaPlayerRenderer{
188 "android-media-player-renderer", base::FEATURE_ENABLED_BY_DEFAULT}; 188 "android-media-player-renderer", base::FEATURE_ENABLED_BY_DEFAULT};
189
190 // Lock the screen orientation when a video goes fullscreen.
191 const base::Feature kVideoFullscreenOrientationLock{
192 "VideoFullscreenOrientationLock", base::FEATURE_DISABLED_BY_DEFAULT};
189 #endif 193 #endif
190 194
191 } // namespace media 195 } // namespace media
OLDNEW
« no previous file with comments | « media/base/media_switches.h ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698