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 2801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2812 | 2812 |
2813 // Video fullscreen with orientation lock experiment strings. | 2813 // Video fullscreen with orientation lock experiment strings. |
2814 | 2814 |
2815 // Name of the flag for enabling orientation lock for fullscreen video playback. | 2815 // Name of the flag for enabling orientation lock for fullscreen video playback. |
2816 extern const char kVideoFullscreenOrientationLockName[]; | 2816 extern const char kVideoFullscreenOrientationLockName[]; |
2817 | 2817 |
2818 // Description of the flag for enabling orientation lock for fullscreen video | 2818 // Description of the flag for enabling orientation lock for fullscreen video |
2819 // playback. | 2819 // playback. |
2820 extern const char kVideoFullscreenOrientationLockDescription[]; | 2820 extern const char kVideoFullscreenOrientationLockDescription[]; |
2821 | 2821 |
| 2822 // Video rotate-to-fullscreen experiment strings. |
| 2823 |
| 2824 // Name of the flag for enabling rotate-to-fullscreen for video playback. |
| 2825 extern const char kVideoRotateToFullscreenName[]; |
| 2826 |
| 2827 // Description of the flag for enabling rotate-to-fullscreen for video playback. |
| 2828 extern const char kVideoRotateToFullscreenDescription[]; |
| 2829 |
2822 // Expensive background timer throttling flag | 2830 // Expensive background timer throttling flag |
2823 | 2831 |
2824 // Name for the flag to enable expensive background timer throttling | 2832 // Name for the flag to enable expensive background timer throttling |
2825 extern const char kExpensiveBackgroundTimerThrottlingName[]; | 2833 extern const char kExpensiveBackgroundTimerThrottlingName[]; |
2826 | 2834 |
2827 // Description for the flag to enable expensive background timer throttling | 2835 // Description for the flag to enable expensive background timer throttling |
2828 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; | 2836 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; |
2829 | 2837 |
2830 // Enable default MediaSession flag | 2838 // Enable default MediaSession flag |
2831 | 2839 |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3264 extern const char kEnableCopylessPasteName[]; | 3272 extern const char kEnableCopylessPasteName[]; |
3265 | 3273 |
3266 // Description of the flag that enables Copyless Paste. | 3274 // Description of the flag that enables Copyless Paste. |
3267 extern const char kEnableCopylessPasteDescription[]; | 3275 extern const char kEnableCopylessPasteDescription[]; |
3268 | 3276 |
3269 #endif // defined(OS_ANDROID) | 3277 #endif // defined(OS_ANDROID) |
3270 | 3278 |
3271 } // namespace flag_descriptions | 3279 } // namespace flag_descriptions |
3272 | 3280 |
3273 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3281 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |