Bug 1317801 - Enable Mac remote printing in 52; r?bobowen draft
authorHaik Aftandilian <haftandilian@mozilla.com>
Tue, 15 Nov 2016 21:51:15 -0800
changeset 440051 aad9488664f7cfe346a94780a5a0f3314c0f744d
parent 439374 9b6e3200698a695d3ca03f3848060083b8fe4ae6
child 440052 b0517f855ca06babb4dad3aad3c695b9ea38c0c5
push id36149
push userhaftandilian@mozilla.com
push dateThu, 17 Nov 2016 00:16:52 +0000
reviewersbobowen
bugs1317801
milestone53.0a1
Bug 1317801 - Enable Mac remote printing in 52; r?bobowen Enable remote printing for Mac by setting print.print_via_parent=true by default. MozReview-Commit-ID: DKiMJPiIO0n
modules/libpref/init/all.js
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -1108,20 +1108,17 @@ pref("print.print_unwriteable_margin_bot
 // This is used by both Printing and Print Preview
 // Units are in 1/100ths of an inch.
 pref("print.print_edge_top", 0);
 pref("print.print_edge_left", 0);
 pref("print.print_edge_right", 0);
 pref("print.print_edge_bottom", 0);
 
 // Print via the parent process. This is only used when e10s is enabled.
-// For Mac, limit to Nightly.
-#if defined(XP_WIN)
-pref("print.print_via_parent", true);
-#elif defined(XP_MACOSX) && defined(NIGHTLY_BUILD)
+#if defined(XP_WIN) || defined(XP_MACOSX)
 pref("print.print_via_parent", true);
 #else
 pref("print.print_via_parent", false);
 #endif
 
 // Pref used by the spellchecker extension to control the
 // maximum number of misspelled words that will be underlined
 // in a document.