| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 // Print Preview features | 128 // Print Preview features |
| 129 | 129 |
| 130 // Name for the flag to add the option to print PDFs as images to print preview. | 130 // Name for the flag to add the option to print PDFs as images to print preview. |
| 131 extern const char kPrintPdfAsImageName[]; | 131 extern const char kPrintPdfAsImageName[]; |
| 132 | 132 |
| 133 // Description for the flag to add the option to print PDFs as images in print | 133 // Description for the flag to add the option to print PDFs as images in print |
| 134 // preview. | 134 // preview. |
| 135 extern const char kPrintPdfAsImageDescription[]; | 135 extern const char kPrintPdfAsImageDescription[]; |
| 136 | 136 |
| 137 // Name for the flag to add the print scaling feature to print preview. | |
| 138 extern const char kPrintScalingName[]; | |
| 139 | |
| 140 // Description for the flag to add the print scaling feature to print preview. | |
| 141 extern const char kPrintScalingDescription[]; | |
| 142 | |
| 143 // Name of the 'Native Client' lab. | 137 // Name of the 'Native Client' lab. |
| 144 extern const char kNaclName[]; | 138 extern const char kNaclName[]; |
| 145 | 139 |
| 146 #if defined(OS_ANDROID) | 140 #if defined(OS_ANDROID) |
| 147 | 141 |
| 148 // Mobile: Description of the 'Native Client' lab. | 142 // Mobile: Description of the 'Native Client' lab. |
| 149 extern const char kNaclDescription[]; | 143 extern const char kNaclDescription[]; |
| 150 | 144 |
| 151 #endif // defined(OS_ANDROID) | 145 #endif // defined(OS_ANDROID) |
| 152 | 146 |
| (...skipping 3126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3279 extern const char kEnableCopylessPasteName[]; | 3273 extern const char kEnableCopylessPasteName[]; |
| 3280 | 3274 |
| 3281 // Description of the flag that enables Copyless Paste. | 3275 // Description of the flag that enables Copyless Paste. |
| 3282 extern const char kEnableCopylessPasteDescription[]; | 3276 extern const char kEnableCopylessPasteDescription[]; |
| 3283 | 3277 |
| 3284 #endif // defined(OS_ANDROID) | 3278 #endif // defined(OS_ANDROID) |
| 3285 | 3279 |
| 3286 } // namespace flag_descriptions | 3280 } // namespace flag_descriptions |
| 3287 | 3281 |
| 3288 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3282 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |