Chromium Code Reviews| Index: chrome/common/chrome_switches.h |
| diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h |
| index 850dacc915b03afe9d610e6ebc62b1469eeb4301..b62d54d0b5102e8787bd0850a0fe43f30a7084fd 100644 |
| --- a/chrome/common/chrome_switches.h |
| +++ b/chrome/common/chrome_switches.h |
| @@ -354,6 +354,7 @@ extern const char kMakeChromeDefault[]; |
| #endif // defined(OS_MACOSX) |
| #if defined(OS_WIN) |
| +extern const char kEnableGDITextPrinting[]; |
|
scottmg
2016/11/14 23:29:03
These were sorted-ish before.
Lei Zhang
2016/11/14 23:36:43
Indeed. Sorted.
|
| extern const char kDisableGDITextPrinting[]; |
| extern const char kDisablePerMonitorDpi[]; |
| extern const char kEnableCloudPrintXps[]; |
| @@ -394,13 +395,16 @@ bool AboutInSettingsEnabled(); |
| bool ExtensionsDisabled(const base::CommandLine& command_line); |
| bool MdFeedbackEnabled(); |
| bool MdPolicyPageEnabled(); |
| -bool PdfMaterialUIEnabled(); |
| bool SettingsWindowEnabled(); |
| #if defined(OS_CHROMEOS) |
| bool PowerOverlayEnabled(); |
| #endif |
| +#if defined(OS_WIN) |
| +bool GDITextPrintingEnabled(); |
| +#endif |
| + |
| // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| // alphabetical order, or in one of the ifdefs (also in order in each section). |