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

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, 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
« no previous file with comments | « chrome/browser/flag_descriptions.cc ('k') | chrome/browser/ui/webui/options/browser_options_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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');
« no previous file with comments | « chrome/browser/flag_descriptions.cc ('k') | chrome/browser/ui/webui/options/browser_options_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698