OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
6 | 6 |
7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
8 | 8 |
9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
10 | 10 |
(...skipping 2563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2574 | 2574 |
2575 // Background video track disabling experiment strings. | 2575 // Background video track disabling experiment strings. |
2576 | 2576 |
2577 const char kBackgroundVideoTrackOptimizationName[] = | 2577 const char kBackgroundVideoTrackOptimizationName[] = |
2578 "Optimize background video playback."; | 2578 "Optimize background video playback."; |
2579 | 2579 |
2580 const char kBackgroundVideoTrackOptimizationDescription[] = | 2580 const char kBackgroundVideoTrackOptimizationDescription[] = |
2581 "Disable video tracks when the video is played in the background to " | 2581 "Disable video tracks when the video is played in the background to " |
2582 "optimize performance."; | 2582 "optimize performance."; |
2583 | 2583 |
| 2584 // New remote playback pipeline experiment strings. |
| 2585 |
| 2586 const char kNewRemotePlaybackPipelineName[] = |
| 2587 "Enable the new remote playback pipeline."; |
| 2588 |
| 2589 const char kNewRemotePlaybackPipelineDescription[] = |
| 2590 "Enable the new pipeline for playing media element remotely via " |
| 2591 "RemotePlayback API or native controls."; |
| 2592 |
2584 // Video fullscreen with orientation lock experiment strings. | 2593 // Video fullscreen with orientation lock experiment strings. |
2585 | 2594 |
2586 const char kVideoFullscreenOrientationLockName[] = | 2595 const char kVideoFullscreenOrientationLockName[] = |
2587 "Lock screen orientation when playing a video fullscreen."; | 2596 "Lock screen orientation when playing a video fullscreen."; |
2588 | 2597 |
2589 const char kVideoFullscreenOrientationLockDescription[] = | 2598 const char kVideoFullscreenOrientationLockDescription[] = |
2590 "Lock the screen orientation of the device to match video orientation " | 2599 "Lock the screen orientation of the device to match video orientation " |
2591 "when a video goes fullscreen. Only on phones."; | 2600 "when a video goes fullscreen. Only on phones."; |
2592 | 2601 |
2593 // Expensive background timer throttling flag | 2602 // Expensive background timer throttling flag |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3043 | 3052 |
3044 const char kAutoplayPolicyNoUserGestureRequired[] = | 3053 const char kAutoplayPolicyNoUserGestureRequired[] = |
3045 "No user gesture is required."; | 3054 "No user gesture is required."; |
3046 | 3055 |
3047 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; | 3056 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; |
3048 | 3057 |
3049 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = | 3058 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = |
3050 "User gesture is required for cross-origin iframes."; | 3059 "User gesture is required for cross-origin iframes."; |
3051 | 3060 |
3052 } // namespace flag_descriptions | 3061 } // namespace flag_descriptions |
OLD | NEW |