| 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 2794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2805 | 2805 |
| 2806 // Video fullscreen with orientation lock experiment strings. | 2806 // Video fullscreen with orientation lock experiment strings. |
| 2807 | 2807 |
| 2808 // Name of the flag for enabling orientation lock for fullscreen video playback. | 2808 // Name of the flag for enabling orientation lock for fullscreen video playback. |
| 2809 extern const char kVideoFullscreenOrientationLockName[]; | 2809 extern const char kVideoFullscreenOrientationLockName[]; |
| 2810 | 2810 |
| 2811 // Description of the flag for enabling orientation lock for fullscreen video | 2811 // Description of the flag for enabling orientation lock for fullscreen video |
| 2812 // playback. | 2812 // playback. |
| 2813 extern const char kVideoFullscreenOrientationLockDescription[]; | 2813 extern const char kVideoFullscreenOrientationLockDescription[]; |
| 2814 | 2814 |
| 2815 // Video rotate-to-fullscreen experiment strings. |
| 2816 |
| 2817 // Name of the flag for enabling rotate-to-fullscreen for video playback. |
| 2818 extern const char kVideoRotateToFullscreenName[]; |
| 2819 |
| 2820 // Description of the flag for enabling rotate-to-fullscreen for video playback. |
| 2821 extern const char kVideoRotateToFullscreenDescription[]; |
| 2822 |
| 2815 // Expensive background timer throttling flag | 2823 // Expensive background timer throttling flag |
| 2816 | 2824 |
| 2817 // Name for the flag to enable expensive background timer throttling | 2825 // Name for the flag to enable expensive background timer throttling |
| 2818 extern const char kExpensiveBackgroundTimerThrottlingName[]; | 2826 extern const char kExpensiveBackgroundTimerThrottlingName[]; |
| 2819 | 2827 |
| 2820 // Description for the flag to enable expensive background timer throttling | 2828 // Description for the flag to enable expensive background timer throttling |
| 2821 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; | 2829 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; |
| 2822 | 2830 |
| 2823 // Enable default MediaSession flag | 2831 // Enable default MediaSession flag |
| 2824 | 2832 |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3310 | 3318 |
| 3311 // Description of the autoplay policy that has no user gesture requirements. | 3319 // Description of the autoplay policy that has no user gesture requirements. |
| 3312 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3320 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3313 | 3321 |
| 3314 // Description of the autoplay policy that requires a user gesture. | 3322 // Description of the autoplay policy that requires a user gesture. |
| 3315 extern const char kAutoplayPolicyUserGestureRequired[]; | 3323 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3316 | 3324 |
| 3317 } // namespace flag_descriptions | 3325 } // namespace flag_descriptions |
| 3318 | 3326 |
| 3319 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3327 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |