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

Unified Diff: chrome/common/chrome_features.cc

Issue 2633573002: Add Postscript Printing (Closed)
Patch Set: Fix Linux compile error Created 3 years, 11 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 164adaa3740bec21e2f702d635a3fb75c4616a72..2553003fcdf867f101acf32a2a76e067e2076398 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -160,6 +160,13 @@ const base::Feature kOverrideYouTubeFlashEmbed{
const base::Feature kPermissionsBlacklist{
"PermissionsBlacklist", base::FEATURE_DISABLED_BY_DEFAULT};
+// Enables postscript generation instead of emf when printing to postscript
+// capable printers.
+#if defined(OS_WIN)
+const base::Feature kPostScriptPrinting{"PostScriptPrinting",
+ base::FEATURE_DISABLED_BY_DEFAULT};
+#endif // OS_WIN
+
#if BUILDFLAG(ENABLE_PLUGINS)
// Prefer HTML content by hiding Flash from the list of plugins.
// https://crbug.com/626728

Powered by Google App Engine
This is Rietveld 408576698