| 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 2864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2875 // Name for the flag to enable expensive background timer throttling | 2875 // Name for the flag to enable expensive background timer throttling |
| 2876 extern const char kExpensiveBackgroundTimerThrottlingName[]; | 2876 extern const char kExpensiveBackgroundTimerThrottlingName[]; |
| 2877 | 2877 |
| 2878 // Description for the flag to enable expensive background timer throttling | 2878 // Description for the flag to enable expensive background timer throttling |
| 2879 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; | 2879 extern const char kExpensiveBackgroundTimerThrottlingDescription[]; |
| 2880 | 2880 |
| 2881 // Enable default MediaSession flag | 2881 // Enable default MediaSession flag |
| 2882 | 2882 |
| 2883 #if !defined(OS_ANDROID) | 2883 #if !defined(OS_ANDROID) |
| 2884 | 2884 |
| 2885 // Name for the flag to enable default MediaSession on desktop | 2885 // Name for the flag to enable audio focus on desktop. |
| 2886 extern const char kEnableDefaultMediaSessionName[]; | 2886 extern const char kEnableAudioFocusName[]; |
| 2887 | 2887 |
| 2888 // Desciption for the flag to enable default MediaSession on desktop | 2888 // Desciption for the flag to enable audio focus on desktop. |
| 2889 extern const char kEnableDefaultMediaSessionDescription[]; | 2889 extern const char kEnableAudioFocusDescription[]; |
| 2890 | 2890 |
| 2891 // Option for disabling the default MediaSession | 2891 // Option for disabling audio focus on desktop. |
| 2892 extern const char kEnableDefaultMediaSessionDisabled[]; | 2892 extern const char kEnableAudioFocusDisabled[]; |
| 2893 | 2893 |
| 2894 // Option for enabling the default MediaSession | 2894 // Option for enabling audio focus on desktop. |
| 2895 extern const char kEnableDefaultMediaSessionEnabled[]; | 2895 extern const char kEnableAudioFocusEnabled[]; |
| 2896 | 2896 |
| 2897 // Option for enabling the default MediaSession with Flash | 2897 // Option for enabling audio focus with Flash support on desktop. |
| 2898 extern const char kEnableDefaultMediaSessionEnabledDuckFlash[]; | 2898 extern const char kEnableAudioFocusEnabledDuckFlash[]; |
| 2899 | 2899 |
| 2900 #endif // !defined(OS_ANDROID) | 2900 #endif // !defined(OS_ANDROID) |
| 2901 | 2901 |
| 2902 #if defined(OS_WIN) | 2902 #if defined(OS_WIN) |
| 2903 | 2903 |
| 2904 // Name for the flag that enables using GDI to print text | 2904 // Name for the flag that enables using GDI to print text |
| 2905 extern const char kGdiTextPrinting[]; | 2905 extern const char kGdiTextPrinting[]; |
| 2906 | 2906 |
| 2907 // Description of the flag that enables using GDI to print text. | 2907 // Description of the flag that enables using GDI to print text. |
| 2908 extern const char kGdiTextPrintingDescription[]; | 2908 extern const char kGdiTextPrintingDescription[]; |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3404 // a hard-reload. | 3404 // a hard-reload. |
| 3405 extern const char kLocationHardReloadDescription[]; | 3405 extern const char kLocationHardReloadDescription[]; |
| 3406 | 3406 |
| 3407 // Name and description for the capture-thumbnail-on-load-finished flag. | 3407 // Name and description for the capture-thumbnail-on-load-finished flag. |
| 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; | 3408 extern const char kCaptureThumbnailOnLoadFinishedName[]; |
| 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; | 3409 extern const char kCaptureThumbnailOnLoadFinishedDescription[]; |
| 3410 | 3410 |
| 3411 } // namespace flag_descriptions | 3411 } // namespace flag_descriptions |
| 3412 | 3412 |
| 3413 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3413 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |