| 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 2936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2947 extern const char kWindows10CustomTitlebarName[]; | 2947 extern const char kWindows10CustomTitlebarName[]; |
| 2948 | 2948 |
| 2949 // Description for the flag that enables custom drawing of the Windows 10 | 2949 // Description for the flag that enables custom drawing of the Windows 10 |
| 2950 // titlebar. | 2950 // titlebar. |
| 2951 extern const char kWindows10CustomTitlebarDescription[]; | 2951 extern const char kWindows10CustomTitlebarDescription[]; |
| 2952 | 2952 |
| 2953 #endif // defined(OS_WIN) | 2953 #endif // defined(OS_WIN) |
| 2954 | 2954 |
| 2955 #if defined(OS_WIN) | 2955 #if defined(OS_WIN) |
| 2956 | 2956 |
| 2957 // Name of the flag that enables postscript printing. | 2957 // Name of the flag that disables postscript printing. |
| 2958 extern const char kPostscriptPrinting[]; | 2958 extern const char kDisablePostscriptPrinting[]; |
| 2959 | 2959 |
| 2960 // Description of the flag that enables postscript printing. | 2960 // Description of the flag that disables postscript printing. |
| 2961 extern const char kPostscriptPrintingDescription[]; | 2961 extern const char kDisablePostscriptPrintingDescription[]; |
| 2962 | 2962 |
| 2963 #endif // defined(OS_WIN) | 2963 #endif // defined(OS_WIN) |
| 2964 | 2964 |
| 2965 #if defined(OS_ANDROID) | 2965 #if defined(OS_ANDROID) |
| 2966 | 2966 |
| 2967 // Name of the flag that enables intermediate certificate fetching. | 2967 // Name of the flag that enables intermediate certificate fetching. |
| 2968 extern const char kAiaFetchingName[]; | 2968 extern const char kAiaFetchingName[]; |
| 2969 | 2969 |
| 2970 // Description of the flag that enables intermediate certificate fetching. | 2970 // Description of the flag that enables intermediate certificate fetching. |
| 2971 extern const char kAiaFetchingDescription[]; | 2971 extern const char kAiaFetchingDescription[]; |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3316 | 3316 |
| 3317 // Description of the autoplay policy that has no user gesture requirements. | 3317 // Description of the autoplay policy that has no user gesture requirements. |
| 3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3319 | 3319 |
| 3320 // Description of the autoplay policy that requires a user gesture. | 3320 // Description of the autoplay policy that requires a user gesture. |
| 3321 extern const char kAutoplayPolicyUserGestureRequired[]; | 3321 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3322 | 3322 |
| 3323 } // namespace flag_descriptions | 3323 } // namespace flag_descriptions |
| 3324 | 3324 |
| 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |