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 2572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2583 | 2583 |
2584 // Video fullscreen with orientation lock experiment strings. | 2584 // Video fullscreen with orientation lock experiment strings. |
2585 | 2585 |
2586 const char kVideoFullscreenOrientationLockName[] = | 2586 const char kVideoFullscreenOrientationLockName[] = |
2587 "Lock screen orientation when playing a video fullscreen."; | 2587 "Lock screen orientation when playing a video fullscreen."; |
2588 | 2588 |
2589 const char kVideoFullscreenOrientationLockDescription[] = | 2589 const char kVideoFullscreenOrientationLockDescription[] = |
2590 "Lock the screen orientation of the device to match video orientation " | 2590 "Lock the screen orientation of the device to match video orientation " |
2591 "when a video goes fullscreen. Only on phones."; | 2591 "when a video goes fullscreen. Only on phones."; |
2592 | 2592 |
| 2593 // Video rotate-to-fullscreen experiment strings. |
| 2594 |
| 2595 const char kVideoRotateToFullscreenName[] = |
| 2596 "Rotate-to-fullscreen gesture for videos."; |
| 2597 |
| 2598 const char kVideoRotateToFullscreenDescription[] = |
| 2599 "Enter/exit fullscreen when device is rotated to/from the orientation of " |
| 2600 "the video. Only on phones."; |
| 2601 |
2593 // Expensive background timer throttling flag | 2602 // Expensive background timer throttling flag |
2594 | 2603 |
2595 const char kExpensiveBackgroundTimerThrottlingName[] = | 2604 const char kExpensiveBackgroundTimerThrottlingName[] = |
2596 "Throttle expensive background timers"; | 2605 "Throttle expensive background timers"; |
2597 | 2606 |
2598 const char kExpensiveBackgroundTimerThrottlingDescription[] = | 2607 const char kExpensiveBackgroundTimerThrottlingDescription[] = |
2599 "Enables intervention to limit CPU usage of background timers to 1%."; | 2608 "Enables intervention to limit CPU usage of background timers to 1%."; |
2600 | 2609 |
2601 // Enable default MediaSession flag | 2610 // Enable default MediaSession flag |
2602 | 2611 |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3035 | 3044 |
3036 const char kAutoplayPolicyNoUserGestureRequired[] = | 3045 const char kAutoplayPolicyNoUserGestureRequired[] = |
3037 "No user gesture is required."; | 3046 "No user gesture is required."; |
3038 | 3047 |
3039 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; | 3048 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; |
3040 | 3049 |
3041 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = | 3050 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = |
3042 "User gesture is required for cross-origin iframes."; | 3051 "User gesture is required for cross-origin iframes."; |
3043 | 3052 |
3044 } // namespace flag_descriptions | 3053 } // namespace flag_descriptions |
OLD | NEW |