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

Unified Diff: chrome/browser/ui/webui/print_preview/print_preview_ui.cc

Issue 2885363003: Add policy to use system default printer (Closed)
Patch Set: Remove IOS checks Created 3 years, 6 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/ui/browser_ui_prefs.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/print_preview/print_preview_ui.cc
diff --git a/chrome/browser/ui/webui/print_preview/print_preview_ui.cc b/chrome/browser/ui/webui/print_preview/print_preview_ui.cc
index e675add9cbe333c980d660d9cf91846c6aef1b8a..ee92bb87270c0361470fde56cd5d2e6e5f03b1d5 100644
--- a/chrome/browser/ui/webui/print_preview/print_preview_ui.cc
+++ b/chrome/browser/ui/webui/print_preview/print_preview_ui.cc
@@ -8,6 +8,7 @@
#include <utility>
#include <vector>
+#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/id_map.h"
#include "base/lazy_instance.h"
@@ -31,10 +32,13 @@
#include "chrome/browser/ui/webui/print_preview/print_preview_handler.h"
#include "chrome/browser/ui/webui/theme_source.h"
#include "chrome/common/chrome_features.h"
+#include "chrome/common/chrome_switches.h"
+#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/browser_resources.h"
#include "chrome/grit/chromium_strings.h"
#include "chrome/grit/generated_resources.h"
+#include "components/prefs/pref_service.h"
#include "components/printing/common/print_messages.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/url_data_source.h"
@@ -49,11 +53,6 @@
#include "ui/web_dialogs/web_dialog_delegate.h"
#include "ui/web_dialogs/web_dialog_ui.h"
-#if defined(OS_CHROMEOS)
-#include "base/command_line.h"
-#include "chrome/common/chrome_switches.h"
-#endif
-
using content::WebContents;
using printing::PageSizeMargins;
@@ -165,7 +164,7 @@ bool HandleRequestCallback(
return true;
}
-content::WebUIDataSource* CreatePrintPreviewUISource() {
+content::WebUIDataSource* CreatePrintPreviewUISource(Profile* profile) {
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIPrintHost);
#if defined(OS_CHROMEOS)
@@ -425,8 +424,12 @@ content::WebUIDataSource* CreatePrintPreviewUISource() {
!base::CommandLine::ForCurrentProcess()->HasSwitch(
::switches::kDisableNativeCups);
source->AddBoolean("showLocalManageButton", cups_and_md_settings_enabled);
+ source->AddBoolean("useSystemDefaultPrinter", false);
#else
source->AddBoolean("showLocalManageButton", true);
+ bool system_default_printer = profile->GetPrefs()->GetBoolean(
+ prefs::kPrintPreviewUseSystemDefaultPrinter);
+ source->AddBoolean("useSystemDefaultPrinter", system_default_printer);
#endif
return source;
}
@@ -444,7 +447,7 @@ PrintPreviewUI::PrintPreviewUI(content::WebUI* web_ui)
dialog_closed_(false) {
// Set up the chrome://print/ data source.
Profile* profile = Profile::FromWebUI(web_ui);
- content::WebUIDataSource::Add(profile, CreatePrintPreviewUISource());
+ content::WebUIDataSource::Add(profile, CreatePrintPreviewUISource(profile));
// Set up the chrome://theme/ source.
content::URLDataSource::Add(profile, new ThemeSource(profile));
« no previous file with comments | « chrome/browser/ui/browser_ui_prefs.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698