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

Unified Diff: chrome/browser/resources/options/browser_options.js

Issue 2475813002: Enable Native CUPS printing on Chrome OS. (Closed)
Patch Set: rebase Created 3 years, 9 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/browser/resources/options/browser_options.js
diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
index 92d5a88f2eb6a9d9ffd8aac50477569b933c95c7..2266bdbe0b63cbdabd5865c5bb2e1a7b6d46c50e 100644
--- a/chrome/browser/resources/options/browser_options.js
+++ b/chrome/browser/resources/options/browser_options.js
@@ -724,7 +724,7 @@ cr.define('options', function() {
// CUPS Print section (CrOS only).
if (cr.isChromeOS) {
- if (loadTimeData.getBoolean('cupsPrintEnabled')) {
+ if (!loadTimeData.getBoolean('cupsPrintDisabled')) {
$('cups-printers-section').hidden = false;
$('cupsPrintersManageButton').onclick = function() {
chrome.send('showCupsPrintDevicesPage');

Powered by Google App Engine
This is Rietveld 408576698