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 2932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2943 extern const char kWindows10CustomTitlebarName[]; | 2943 extern const char kWindows10CustomTitlebarName[]; |
2944 | 2944 |
2945 // Description for the flag that enables custom drawing of the Windows 10 | 2945 // Description for the flag that enables custom drawing of the Windows 10 |
2946 // titlebar. | 2946 // titlebar. |
2947 extern const char kWindows10CustomTitlebarDescription[]; | 2947 extern const char kWindows10CustomTitlebarDescription[]; |
2948 | 2948 |
2949 #endif // defined(OS_WIN) | 2949 #endif // defined(OS_WIN) |
2950 | 2950 |
2951 #if defined(OS_WIN) | 2951 #if defined(OS_WIN) |
2952 | 2952 |
2953 // Name of the flag that enables postscript printing. | 2953 // Name of the flag that disables postscript printing. |
2954 extern const char kPostscriptPrinting[]; | 2954 extern const char kDisablePostscriptPrinting[]; |
2955 | 2955 |
2956 // Description of the flag that enables postscript printing. | 2956 // Description of the flag that disables postscript printing. |
2957 extern const char kPostscriptPrintingDescription[]; | 2957 extern const char kDisablePostscriptPrintingDescription[]; |
2958 | 2958 |
2959 #endif // defined(OS_WIN) | 2959 #endif // defined(OS_WIN) |
2960 | 2960 |
2961 #if defined(OS_ANDROID) | 2961 #if defined(OS_ANDROID) |
2962 | 2962 |
2963 // Name of the flag that enables intermediate certificate fetching. | 2963 // Name of the flag that enables intermediate certificate fetching. |
2964 extern const char kAiaFetchingName[]; | 2964 extern const char kAiaFetchingName[]; |
2965 | 2965 |
2966 // Description of the flag that enables intermediate certificate fetching. | 2966 // Description of the flag that enables intermediate certificate fetching. |
2967 extern const char kAiaFetchingDescription[]; | 2967 extern const char kAiaFetchingDescription[]; |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3320 // current URL. | 3320 // current URL. |
3321 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3321 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
3322 | 3322 |
3323 // Description of the about: flag for displaying the title of the omnibox match | 3323 // Description of the about: flag for displaying the title of the omnibox match |
3324 // for current URL. | 3324 // for current URL. |
3325 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3325 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
3326 | 3326 |
3327 } // namespace flag_descriptions | 3327 } // namespace flag_descriptions |
3328 | 3328 |
3329 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3329 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |