Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1521)

Unified Diff: chrome/common/chrome_features.cc

Issue 2847273002: Reverse postscript flag direction (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index 0ca3166d051a88ef437f2f3a1a07d4efb2e12292..a0bf489c24c7e0cd5403468b391f185b206b902d 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -239,11 +239,11 @@ const base::Feature kOfflinePageDownloadSuggestionsFeature{
const base::Feature kPermissionsBlacklist{
"PermissionsBlacklist", base::FEATURE_DISABLED_BY_DEFAULT};
-// Enables PostScript generation instead of EMF when printing to PostScript
-// capable printers.
+// Disables PostScript generation when printing to PostScript capable printers
+// and instead sends Emf files.
#if defined(OS_WIN)
-const base::Feature kPostScriptPrinting{"PostScriptPrinting",
- base::FEATURE_DISABLED_BY_DEFAULT};
+const base::Feature kDisablePostScriptPrinting{
+ "DisablePostScriptPrinting", base::FEATURE_DISABLED_BY_DEFAULT};
#endif
#if BUILDFLAG(ENABLE_PLUGINS)

Powered by Google App Engine
This is Rietveld 408576698