2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-06-12 19:34:07 +00:00
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Fri, 7 Jun 2019 13:59:37 -0700
|
2019-08-24 01:14:23 +00:00
|
|
|
Subject: printing.patch
|
2018-10-24 18:24:11 +00:00
|
|
|
|
|
|
|
Add changeset that was previously applied to sources in chromium_src. The
|
|
|
|
majority of changes originally come from these PRs:
|
|
|
|
* https://github.com/electron/electron/pull/1835
|
|
|
|
* https://github.com/electron/electron/pull/8596
|
|
|
|
|
2019-06-12 19:34:07 +00:00
|
|
|
This patch also fixes callback for manual user cancellation and success.
|
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
diff --git a/chrome/browser/printing/print_job_worker.cc b/chrome/browser/printing/print_job_worker.cc
|
2020-01-17 18:41:52 +00:00
|
|
|
index ebffdb08d080eceb0ea9e96ee3ca7db627cfaf5e..bc00a7a00626cee17e5f5ea976f8248f71e06505 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/chrome/browser/printing/print_job_worker.cc
|
|
|
|
+++ b/chrome/browser/printing/print_job_worker.cc
|
2019-10-28 22:12:35 +00:00
|
|
|
@@ -21,7 +21,6 @@
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "chrome/browser/browser_process.h"
|
|
|
|
#include "chrome/browser/chrome_notification_types.h"
|
|
|
|
#include "chrome/browser/printing/print_job.h"
|
|
|
|
-#include "chrome/grit/generated_resources.h"
|
2019-10-28 22:12:35 +00:00
|
|
|
#include "components/crash/core/common/crash_keys.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2019-10-28 22:12:35 +00:00
|
|
|
@@ -29,6 +28,7 @@
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "content/public/browser/render_frame_host.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2019-10-28 22:12:35 +00:00
|
|
|
#include "printing/backend/print_backend.h"
|
2019-01-12 01:00:43 +00:00
|
|
|
+#include "electron/grit/electron_resources.h"
|
|
|
|
#include "printing/print_job_constants.h"
|
|
|
|
#include "printing/printed_document.h"
|
|
|
|
#include "printing/printing_utils.h"
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -221,9 +221,14 @@ void PrintJobWorker::UpdatePrintSettings(base::Value new_settings,
|
2019-10-28 22:12:35 +00:00
|
|
|
print_backend->GetPrinterDriverInfo(printer_name));
|
|
|
|
}
|
|
|
|
|
2019-08-07 14:47:24 +00:00
|
|
|
- PrintingContext::Result result =
|
|
|
|
- printing_context_->UpdatePrintSettings(std::move(new_settings));
|
|
|
|
- GetSettingsDone(std::move(callback), result);
|
|
|
|
+ // Reset settings from previous print job
|
|
|
|
+ printing_context_->ResetSettings();
|
|
|
|
+ PrintingContext::Result get_default_result = printing_context_->UseDefaultSettings();
|
|
|
|
+ if (get_default_result == PrintingContext::Result::OK) {
|
|
|
|
+ PrintingContext::Result update_result =
|
|
|
|
+ printing_context_->UpdatePrintSettings(std::move(new_settings));
|
|
|
|
+ GetSettingsDone(std::move(callback), update_result);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(OS_CHROMEOS)
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -239,6 +244,13 @@ void PrintJobWorker::UpdatePrintSettingsFromPOD(
|
2019-06-12 19:34:07 +00:00
|
|
|
|
|
|
|
void PrintJobWorker::GetSettingsDone(SettingsCallback callback,
|
|
|
|
PrintingContext::Result result) {
|
|
|
|
+ if (result == PrintingContext::CANCEL) {
|
|
|
|
+ print_job_->PostTask(
|
|
|
|
+ FROM_HERE,
|
|
|
|
+ base::BindOnce(&NotificationCallback, base::RetainedRef(print_job_),
|
|
|
|
+ JobEventDetails::USER_INIT_CANCELED, 0,
|
|
|
|
+ base::RetainedRef(document_)));
|
|
|
|
+ }
|
2019-08-24 01:14:23 +00:00
|
|
|
std::move(callback).Run(printing_context_->TakeAndResetSettings(), result);
|
2019-06-12 19:34:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/printing/print_view_manager_base.cc
|
2020-01-27 18:54:56 +00:00
|
|
|
index 155d86fe79b99989c3f604aeaab13782f8e6631c..f801bb8010240bc9ddb35cac921170345f86b8d0 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/chrome/browser/printing/print_view_manager_base.cc
|
|
|
|
+++ b/chrome/browser/printing/print_view_manager_base.cc
|
2018-11-09 03:42:34 +00:00
|
|
|
@@ -27,10 +27,7 @@
|
|
|
|
#include "chrome/browser/printing/print_view_manager_common.h"
|
|
|
|
#include "chrome/browser/printing/printer_query.h"
|
|
|
|
#include "chrome/browser/profiles/profile.h"
|
|
|
|
-#include "chrome/browser/ui/simple_message_box.h"
|
|
|
|
-#include "chrome/browser/ui/webui/print_preview/printer_handler.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "chrome/common/pref_names.h"
|
|
|
|
-#include "chrome/grit/generated_resources.h"
|
|
|
|
#include "components/prefs/pref_service.h"
|
|
|
|
#include "components/printing/browser/print_composite_client.h"
|
|
|
|
#include "components/printing/browser/print_manager_utils.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
@@ -45,6 +42,7 @@
|
|
|
|
#include "content/public/browser/render_process_host.h"
|
|
|
|
#include "content/public/browser/render_view_host.h"
|
|
|
|
#include "content/public/browser/web_contents.h"
|
|
|
|
+#include "electron/grit/electron_resources.h"
|
|
|
|
#include "mojo/public/cpp/system/buffer.h"
|
|
|
|
#include "printing/buildflags/buildflags.h"
|
2018-11-09 07:16:43 +00:00
|
|
|
#include "printing/metafile_skia.h"
|
2019-07-03 01:22:09 +00:00
|
|
|
@@ -64,6 +62,8 @@ using PrintSettingsCallback =
|
|
|
|
base::OnceCallback<void(std::unique_ptr<PrinterQuery>)>;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
void ShowWarningMessageBox(const base::string16& message) {
|
|
|
|
+ LOG(ERROR) << "Invalid printer settings " << message;
|
|
|
|
+#if 0
|
|
|
|
// Runs always on the UI thread.
|
|
|
|
static bool is_dialog_shown = false;
|
|
|
|
if (is_dialog_shown)
|
2019-07-03 01:22:09 +00:00
|
|
|
@@ -72,6 +72,7 @@ void ShowWarningMessageBox(const base::string16& message) {
|
2018-10-13 01:57:04 +00:00
|
|
|
base::AutoReset<bool> auto_reset(&is_dialog_shown, true);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
chrome::ShowWarningMessageBox(nullptr, base::string16(), message);
|
2019-07-03 01:22:09 +00:00
|
|
|
+#endif
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
2019-07-24 22:58:51 +00:00
|
|
|
@@ -110,12 +111,14 @@ PrintViewManagerBase::PrintViewManagerBase(content::WebContents* web_contents)
|
|
|
|
printing_succeeded_(false),
|
|
|
|
queue_(g_browser_process->print_job_manager()->queue()) {
|
2018-10-13 01:57:04 +00:00
|
|
|
DCHECK(queue_);
|
2019-07-03 01:22:09 +00:00
|
|
|
+#if 0
|
2018-10-13 01:57:04 +00:00
|
|
|
Profile* profile =
|
|
|
|
Profile::FromBrowserContext(web_contents->GetBrowserContext());
|
|
|
|
printing_enabled_.Init(
|
|
|
|
prefs::kPrintingEnabled, profile->GetPrefs(),
|
2019-07-03 01:22:09 +00:00
|
|
|
base::BindRepeating(&PrintViewManagerBase::UpdatePrintingEnabled,
|
|
|
|
weak_ptr_factory_.GetWeakPtr()));
|
|
|
|
+#endif
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
PrintViewManagerBase::~PrintViewManagerBase() {
|
2019-11-08 18:01:50 +00:00
|
|
|
@@ -123,7 +126,10 @@ PrintViewManagerBase::~PrintViewManagerBase() {
|
2018-10-13 01:57:04 +00:00
|
|
|
DisconnectFromCurrentPrintJob();
|
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
-bool PrintViewManagerBase::PrintNow(content::RenderFrameHost* rfh) {
|
|
|
|
+bool PrintViewManagerBase::PrintNow(content::RenderFrameHost* rfh,
|
2019-11-08 18:01:50 +00:00
|
|
|
+ bool silent,
|
|
|
|
+ base::Value settings,
|
|
|
|
+ CompletionCallback callback) {
|
2018-10-13 01:57:04 +00:00
|
|
|
DisconnectFromCurrentPrintJob();
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-11-05 23:41:20 +00:00
|
|
|
// Don't print / print preview interstitials or crashed tabs.
|
2019-11-20 17:06:09 +00:00
|
|
|
@@ -131,7 +137,14 @@ bool PrintViewManagerBase::PrintNow(content::RenderFrameHost* rfh) {
|
2019-11-05 23:41:20 +00:00
|
|
|
return false;
|
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
SetPrintingRFH(rfh);
|
2019-11-05 23:41:20 +00:00
|
|
|
- GetPrintRenderFrame(rfh)->PrintRequestedPages();
|
2018-11-09 03:42:34 +00:00
|
|
|
+ callback_ = std::move(callback);
|
2019-11-08 18:01:50 +00:00
|
|
|
+
|
|
|
|
+ if (!callback_.is_null()) {
|
|
|
|
+ registrar_.Add(this, chrome::NOTIFICATION_PRINT_JOB_EVENT,
|
|
|
|
+ content::NotificationService::AllSources());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ GetPrintRenderFrame(rfh)->PrintRequestedPages(silent, std::move(settings));
|
2019-11-05 23:41:20 +00:00
|
|
|
return true;
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -250,9 +263,9 @@ void PrintViewManagerBase::StartLocalPrintJob(
|
2018-11-09 03:42:34 +00:00
|
|
|
void PrintViewManagerBase::UpdatePrintingEnabled() {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
2018-10-13 01:57:04 +00:00
|
|
|
// The Unretained() is safe because ForEachFrame() is synchronous.
|
2018-11-09 03:42:34 +00:00
|
|
|
- web_contents()->ForEachFrame(base::BindRepeating(
|
|
|
|
- &PrintViewManagerBase::SendPrintingEnabled, base::Unretained(this),
|
2018-10-13 01:57:04 +00:00
|
|
|
- printing_enabled_.GetValue()));
|
2018-11-09 03:42:34 +00:00
|
|
|
+ web_contents()->ForEachFrame(
|
|
|
|
+ base::BindRepeating(&PrintViewManagerBase::SendPrintingEnabled,
|
|
|
|
+ base::Unretained(this), true));
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
void PrintViewManagerBase::NavigationStopped() {
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -355,7 +368,7 @@ void PrintViewManagerBase::OnPrintingFailed(int cookie) {
|
2018-10-13 01:57:04 +00:00
|
|
|
PrintManager::OnPrintingFailed(cookie);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
2018-11-09 03:42:34 +00:00
|
|
|
- ShowPrintErrorDialog();
|
|
|
|
+ // ShowPrintErrorDialog();
|
2018-10-13 01:57:04 +00:00
|
|
|
#endif
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
ReleasePrinterQuery();
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -455,9 +468,13 @@ void PrintViewManagerBase::OnNotifyPrintJobEvent(
|
2019-06-12 19:34:07 +00:00
|
|
|
content::NotificationService::NoDetails());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
- case JobEventDetails::USER_INIT_DONE:
|
|
|
|
- case JobEventDetails::DEFAULT_INIT_DONE:
|
|
|
|
case JobEventDetails::USER_INIT_CANCELED: {
|
2019-07-01 21:03:19 +00:00
|
|
|
+ printing_cancelled_ = true;
|
2019-06-12 19:34:07 +00:00
|
|
|
+ ReleasePrintJob();
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case JobEventDetails::USER_INIT_DONE:
|
|
|
|
+ case JobEventDetails::DEFAULT_INIT_DONE: {
|
|
|
|
NOTREACHED();
|
|
|
|
break;
|
|
|
|
}
|
2020-01-27 18:54:56 +00:00
|
|
|
@@ -552,8 +569,10 @@ bool PrintViewManagerBase::CreateNewPrintJob(
|
2019-06-12 19:34:07 +00:00
|
|
|
DCHECK(!quit_inner_loop_);
|
|
|
|
DCHECK(query);
|
|
|
|
|
|
|
|
- // Disconnect the current |print_job_|.
|
|
|
|
- DisconnectFromCurrentPrintJob();
|
2020-01-27 18:54:56 +00:00
|
|
|
+ if (callback_.is_null()) {
|
|
|
|
+ // Disconnect the current |print_job_| only when calling window.print()
|
|
|
|
+ DisconnectFromCurrentPrintJob();
|
|
|
|
+ }
|
2019-07-03 01:22:09 +00:00
|
|
|
|
2019-06-12 19:34:07 +00:00
|
|
|
// We can't print if there is no renderer.
|
|
|
|
if (!web_contents()->GetRenderViewHost() ||
|
2020-01-27 18:54:56 +00:00
|
|
|
@@ -568,8 +587,6 @@ bool PrintViewManagerBase::CreateNewPrintJob(
|
2019-09-18 19:58:00 +00:00
|
|
|
print_job_->SetSource(PrintJob::Source::PRINT_PREVIEW, /*source_id=*/"");
|
|
|
|
#endif // defined(OS_CHROMEOS)
|
|
|
|
|
2019-06-12 19:34:07 +00:00
|
|
|
- registrar_.Add(this, chrome::NOTIFICATION_PRINT_JOB_EVENT,
|
|
|
|
- content::Source<PrintJob>(print_job_.get()));
|
|
|
|
printing_succeeded_ = false;
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-27 18:54:56 +00:00
|
|
|
@@ -618,14 +635,22 @@ void PrintViewManagerBase::ReleasePrintJob() {
|
2018-10-13 01:57:04 +00:00
|
|
|
content::RenderFrameHost* rfh = printing_rfh_;
|
|
|
|
printing_rfh_ = nullptr;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-07-01 21:03:19 +00:00
|
|
|
+ if (!callback_.is_null()) {
|
|
|
|
+ std::string cb_str = "";
|
|
|
|
+ if (!printing_succeeded_)
|
|
|
|
+ cb_str = printing_cancelled_ ? "cancelled" : "failed";
|
|
|
|
+ std::move(callback_).Run(printing_succeeded_, cb_str);
|
|
|
|
+ }
|
2018-10-13 01:57:04 +00:00
|
|
|
+
|
|
|
|
if (!print_job_)
|
|
|
|
return;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-11-05 23:41:20 +00:00
|
|
|
if (rfh)
|
|
|
|
GetPrintRenderFrame(rfh)->PrintingDone(printing_succeeded_);
|
2019-06-12 19:34:07 +00:00
|
|
|
|
2019-08-05 13:19:01 +00:00
|
|
|
- registrar_.Remove(this, chrome::NOTIFICATION_PRINT_JOB_EVENT,
|
2019-06-12 19:34:07 +00:00
|
|
|
- content::Source<PrintJob>(print_job_.get()));
|
2019-08-05 13:19:01 +00:00
|
|
|
+ if (!callback_.is_null())
|
|
|
|
+ registrar_.Remove(this, chrome::NOTIFICATION_PRINT_JOB_EVENT,
|
|
|
|
+ content::NotificationService::AllSources());
|
2019-06-12 19:34:07 +00:00
|
|
|
// Don't close the worker thread.
|
|
|
|
print_job_ = nullptr;
|
|
|
|
}
|
2020-01-27 18:54:56 +00:00
|
|
|
@@ -661,7 +686,7 @@ bool PrintViewManagerBase::RunInnerMessageLoop() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PrintViewManagerBase::OpportunisticallyCreatePrintJob(int cookie) {
|
|
|
|
- if (print_job_)
|
|
|
|
+ if (print_job_ && print_job_->document())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!cookie) {
|
2018-10-13 01:57:04 +00:00
|
|
|
diff --git a/chrome/browser/printing/print_view_manager_base.h b/chrome/browser/printing/print_view_manager_base.h
|
2020-01-17 18:41:52 +00:00
|
|
|
index 3d434244927aca5e5dbec8d7c1cd212c5c260c71..9d62c903bf08fa8cfa8c425d430c5e995a04f7fc 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/chrome/browser/printing/print_view_manager_base.h
|
|
|
|
+++ b/chrome/browser/printing/print_view_manager_base.h
|
2019-08-15 20:50:58 +00:00
|
|
|
@@ -33,6 +33,8 @@ class PrintJob;
|
2018-11-09 03:42:34 +00:00
|
|
|
class PrintQueriesQueue;
|
|
|
|
class PrinterQuery;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-07-01 21:03:19 +00:00
|
|
|
+using CompletionCallback = base::OnceCallback<void(bool, const std::string&)>;
|
2018-11-09 03:42:34 +00:00
|
|
|
+
|
|
|
|
// Base class for managing the print commands for a WebContents.
|
|
|
|
class PrintViewManagerBase : public content::NotificationObserver,
|
|
|
|
public PrintManager {
|
2019-11-08 18:01:50 +00:00
|
|
|
@@ -42,7 +44,10 @@ class PrintViewManagerBase : public content::NotificationObserver,
|
2018-10-13 01:57:04 +00:00
|
|
|
// Prints the current document immediately. Since the rendering is
|
|
|
|
// asynchronous, the actual printing will not be completed on the return of
|
|
|
|
// this function. Returns false if printing is impossible at the moment.
|
|
|
|
- virtual bool PrintNow(content::RenderFrameHost* rfh);
|
|
|
|
+ virtual bool PrintNow(content::RenderFrameHost* rfh,
|
2019-11-08 18:01:50 +00:00
|
|
|
+ bool silent,
|
|
|
|
+ base::Value settings,
|
2018-11-09 03:42:34 +00:00
|
|
|
+ CompletionCallback callback);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
|
// Prints the document in |print_data| with settings specified in
|
2019-11-20 17:06:09 +00:00
|
|
|
@@ -206,9 +211,15 @@ class PrintViewManagerBase : public content::NotificationObserver,
|
2018-11-09 03:42:34 +00:00
|
|
|
// The current RFH that is printing with a system printing dialog.
|
|
|
|
content::RenderFrameHost* printing_rfh_;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-06-12 19:34:07 +00:00
|
|
|
+ // Respond with success of the print job.
|
2018-11-09 03:42:34 +00:00
|
|
|
+ CompletionCallback callback_;
|
2018-10-13 01:57:04 +00:00
|
|
|
+
|
2018-11-09 03:42:34 +00:00
|
|
|
// Indication of success of the print job.
|
|
|
|
bool printing_succeeded_;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-07-01 21:03:19 +00:00
|
|
|
+ // Indication of whether the print job was manually cancelled
|
|
|
|
+ bool printing_cancelled_ = false;
|
|
|
|
+
|
|
|
|
// Set while running an inner message loop inside RenderAllMissingPagesNow().
|
|
|
|
// This means we are _blocking_ until all the necessary pages have been
|
|
|
|
// rendered or the print settings are being loaded.
|
2018-10-13 01:57:04 +00:00
|
|
|
diff --git a/chrome/browser/printing/printing_message_filter.cc b/chrome/browser/printing/printing_message_filter.cc
|
2019-11-20 17:06:09 +00:00
|
|
|
index 40762a36024bc48dfe5259520161dc203197bfd0..e38aa442df858ce362645230f7642b2eb48262ce 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/chrome/browser/printing/printing_message_filter.cc
|
|
|
|
+++ b/chrome/browser/printing/printing_message_filter.cc
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -22,6 +22,7 @@
|
2019-03-06 17:50:12 +00:00
|
|
|
#include "components/keyed_service/content/browser_context_keyed_service_shutdown_notifier_factory.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "components/printing/browser/print_manager_utils.h"
|
|
|
|
#include "components/printing/common/print_messages.h"
|
|
|
|
+#include "content/public/browser/browser_context.h"
|
2019-03-06 17:50:12 +00:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "content/public/browser/render_frame_host.h"
|
|
|
|
#include "content/public/browser/web_contents.h"
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -90,20 +91,23 @@ void PrintingMessageFilter::SetDelegateForTesting(TestDelegate* delegate) {
|
2019-04-20 17:20:37 +00:00
|
|
|
g_test_delegate = delegate;
|
2019-03-06 17:50:12 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
-PrintingMessageFilter::PrintingMessageFilter(int render_process_id,
|
|
|
|
- Profile* profile)
|
2018-11-09 03:42:34 +00:00
|
|
|
+PrintingMessageFilter::PrintingMessageFilter(
|
|
|
|
+ int render_process_id,
|
|
|
|
+ content::BrowserContext* browser_context)
|
2018-10-13 01:57:04 +00:00
|
|
|
: BrowserMessageFilter(PrintMsgStart),
|
|
|
|
render_process_id_(render_process_id),
|
|
|
|
queue_(g_browser_process->print_job_manager()->queue()) {
|
|
|
|
DCHECK(queue_.get());
|
|
|
|
printing_shutdown_notifier_ =
|
|
|
|
PrintingMessageFilterShutdownNotifierFactory::GetInstance()
|
2018-11-09 03:42:34 +00:00
|
|
|
- ->Get(profile)
|
|
|
|
+ ->Get(browser_context)
|
|
|
|
->Subscribe(base::Bind(&PrintingMessageFilter::ShutdownOnUIThread,
|
|
|
|
base::Unretained(this)));
|
2019-06-12 19:34:07 +00:00
|
|
|
+ #if 0
|
2018-10-13 01:57:04 +00:00
|
|
|
is_printing_enabled_.Init(prefs::kPrintingEnabled, profile->GetPrefs());
|
2019-07-03 01:22:09 +00:00
|
|
|
is_printing_enabled_.MoveToSequence(
|
2019-08-15 20:50:58 +00:00
|
|
|
base::CreateSingleThreadTaskRunner({BrowserThread::IO}));
|
2019-06-12 19:34:07 +00:00
|
|
|
+ #endif
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
PrintingMessageFilter::~PrintingMessageFilter() {
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -138,11 +142,13 @@ bool PrintingMessageFilter::OnMessageReceived(const IPC::Message& message) {
|
2019-07-03 01:22:09 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
void PrintingMessageFilter::OnGetDefaultPrintSettings(IPC::Message* reply_msg) {
|
|
|
|
DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
2019-07-03 01:22:09 +00:00
|
|
|
+#if 0
|
2018-11-09 03:42:34 +00:00
|
|
|
if (!is_printing_enabled_.GetValue()) {
|
2018-10-13 01:57:04 +00:00
|
|
|
// Reply with NULL query.
|
2019-07-03 01:22:09 +00:00
|
|
|
OnGetDefaultPrintSettingsReply(nullptr, reply_msg);
|
2018-10-13 01:57:04 +00:00
|
|
|
return;
|
2018-11-09 03:42:34 +00:00
|
|
|
}
|
2019-07-03 01:22:09 +00:00
|
|
|
+#endif
|
|
|
|
std::unique_ptr<PrinterQuery> printer_query = queue_->PopPrinterQuery(0);
|
|
|
|
if (!printer_query) {
|
2018-11-09 03:42:34 +00:00
|
|
|
printer_query =
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -228,11 +234,13 @@ void PrintingMessageFilter::OnScriptedPrintReply(
|
2019-07-03 01:22:09 +00:00
|
|
|
void PrintingMessageFilter::OnUpdatePrintSettings(int document_cookie,
|
2019-01-24 09:42:21 +00:00
|
|
|
base::Value job_settings,
|
|
|
|
IPC::Message* reply_msg) {
|
2019-07-03 01:22:09 +00:00
|
|
|
+#if 0
|
2018-11-09 03:42:34 +00:00
|
|
|
if (!is_printing_enabled_.GetValue()) {
|
2018-10-13 01:57:04 +00:00
|
|
|
// Reply with NULL query.
|
2019-07-03 01:22:09 +00:00
|
|
|
OnUpdatePrintSettingsReply(nullptr, reply_msg);
|
2018-10-13 01:57:04 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-07-03 01:22:09 +00:00
|
|
|
+#endif
|
|
|
|
std::unique_ptr<PrinterQuery> printer_query =
|
|
|
|
queue_->PopPrinterQuery(document_cookie);
|
|
|
|
if (!printer_query) {
|
2019-11-20 17:06:09 +00:00
|
|
|
@@ -258,7 +266,9 @@ void PrintingMessageFilter::OnUpdatePrintSettingsReply(
|
2019-08-07 14:47:24 +00:00
|
|
|
std::unique_ptr<PrinterQuery> printer_query,
|
|
|
|
IPC::Message* reply_msg) {
|
|
|
|
PrintMsg_PrintPages_Params params;
|
|
|
|
- if (!printer_query || printer_query->last_status() != PrintingContext::OK) {
|
|
|
|
+ // We call update without first printing from defaults,
|
|
|
|
+ // so the last printer status will still be defaulted to PrintingContext::FAILED
|
|
|
|
+ if (!printer_query) {
|
|
|
|
params.Reset();
|
|
|
|
} else {
|
|
|
|
RenderParamsFromPrintSettings(printer_query->settings(), ¶ms.params);
|
2019-11-20 17:06:09 +00:00
|
|
|
@@ -296,7 +306,7 @@ void PrintingMessageFilter::OnUpdatePrintSettingsReply(
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
|
void PrintingMessageFilter::OnCheckForCancel(const PrintHostMsg_PreviewIds& ids,
|
|
|
|
bool* cancel) {
|
2018-11-09 07:16:43 +00:00
|
|
|
- *cancel = PrintPreviewUI::ShouldCancelRequest(ids);
|
|
|
|
+ *cancel = false;
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
|
|
|
#endif
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
diff --git a/chrome/browser/printing/printing_message_filter.h b/chrome/browser/printing/printing_message_filter.h
|
2019-07-03 01:22:09 +00:00
|
|
|
index 9fbea6d0a2dbe55b1d600fbc217dee5aa8ae8cd5..de9bd267e408c02fd4da7d903523c0e6305088d5 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/chrome/browser/printing/printing_message_filter.h
|
|
|
|
+++ b/chrome/browser/printing/printing_message_filter.h
|
2019-03-06 17:50:12 +00:00
|
|
|
@@ -24,6 +24,10 @@ struct PrintHostMsg_ScriptedPrint_Params;
|
|
|
|
struct PrintMsg_Print_Params;
|
2019-02-04 05:49:22 +00:00
|
|
|
class Profile;
|
2018-11-09 03:42:34 +00:00
|
|
|
|
2018-11-09 07:16:43 +00:00
|
|
|
+namespace content {
|
|
|
|
+class BrowserContext;
|
|
|
|
+}
|
|
|
|
+
|
2018-11-09 03:42:34 +00:00
|
|
|
namespace printing {
|
2018-11-09 07:16:43 +00:00
|
|
|
|
|
|
|
class PrintQueriesQueue;
|
2019-04-20 17:20:37 +00:00
|
|
|
@@ -44,7 +48,8 @@ class PrintingMessageFilter : public content::BrowserMessageFilter {
|
|
|
|
|
|
|
|
static void SetDelegateForTesting(TestDelegate* delegate);
|
2019-03-06 17:50:12 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
- PrintingMessageFilter(int render_process_id, Profile* profile);
|
2018-11-09 03:42:34 +00:00
|
|
|
+ PrintingMessageFilter(int render_process_id,
|
|
|
|
+ content::BrowserContext* browser_context);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-02-04 05:49:22 +00:00
|
|
|
// content::BrowserMessageFilter:
|
|
|
|
bool OnMessageReceived(const IPC::Message& message) override;
|
2019-11-05 23:41:20 +00:00
|
|
|
diff --git a/components/printing/common/print.mojom b/components/printing/common/print.mojom
|
2020-01-21 17:39:37 +00:00
|
|
|
index 3695656560c54b5aa1fb08fb5e7c17d54989c597..85ffa5704d8dea809e80b1993c7c852fc545c7a6 100644
|
2019-11-05 23:41:20 +00:00
|
|
|
--- a/components/printing/common/print.mojom
|
|
|
|
+++ b/components/printing/common/print.mojom
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -35,7 +35,7 @@ interface PrintRenderer {
|
2019-11-05 23:41:20 +00:00
|
|
|
interface PrintRenderFrame {
|
|
|
|
// Tells the RenderFrame to switch the CSS to print media type, render every
|
|
|
|
// requested page, and then switch back the CSS to display media type.
|
|
|
|
- PrintRequestedPages();
|
2019-11-08 18:01:50 +00:00
|
|
|
+ PrintRequestedPages(bool silent, mojo_base.mojom.DictionaryValue settings);
|
2019-11-05 23:41:20 +00:00
|
|
|
|
|
|
|
// Tells the RenderFrame to switch the CSS to print media type, render every
|
|
|
|
// requested page using the print preview document's frame/node, and then
|
2018-10-13 01:57:04 +00:00
|
|
|
diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/printing/renderer/print_render_frame_helper.cc
|
2020-01-21 17:39:37 +00:00
|
|
|
index 17c865379c303aa65e134e850c4f7cffe18c410c..c50980a7d38b1110e8f3e7c177c4095ca67c9472 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/components/printing/renderer/print_render_frame_helper.cc
|
|
|
|
+++ b/components/printing/renderer/print_render_frame_helper.cc
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -38,6 +38,7 @@
|
|
|
|
#include "net/base/escape.h"
|
2019-06-27 03:53:17 +00:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
|
|
|
#include "printing/metafile_skia.h"
|
|
|
|
+#include "printing/print_settings.h"
|
|
|
|
#include "printing/units.h"
|
2019-09-18 19:58:00 +00:00
|
|
|
#include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h"
|
2019-06-27 03:53:17 +00:00
|
|
|
#include "third_party/blink/public/common/frame/frame_owner_element_type.h"
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -1120,7 +1121,8 @@ void PrintRenderFrameHelper::ScriptedPrint(bool user_initiated) {
|
2018-11-09 03:42:34 +00:00
|
|
|
web_frame->DispatchBeforePrintEvent();
|
|
|
|
if (!weak_this)
|
|
|
|
return;
|
2019-01-08 23:59:47 +00:00
|
|
|
- Print(web_frame, blink::WebNode(), PrintRequestType::kScripted);
|
|
|
|
+ Print(web_frame, blink::WebNode(), PrintRequestType::kScripted,
|
2019-08-07 14:47:24 +00:00
|
|
|
+ false /* silent */, base::DictionaryValue() /* new_settings */);
|
2018-11-09 03:42:34 +00:00
|
|
|
if (weak_this)
|
|
|
|
web_frame->DispatchAfterPrintEvent();
|
|
|
|
}
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -1141,7 +1143,7 @@ void PrintRenderFrameHelper::BindPrintRenderFrameReceiver(
|
2019-11-05 23:41:20 +00:00
|
|
|
receivers_.Add(this, std::move(receiver));
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-11-05 23:41:20 +00:00
|
|
|
-void PrintRenderFrameHelper::PrintRequestedPages() {
|
2019-11-08 18:01:50 +00:00
|
|
|
+void PrintRenderFrameHelper::PrintRequestedPages(bool silent, base::Value settings) {
|
2019-11-05 23:41:20 +00:00
|
|
|
ScopedIPC scoped_ipc(weak_ptr_factory_.GetWeakPtr());
|
2018-10-13 01:57:04 +00:00
|
|
|
if (ipc_nesting_level_ > 1)
|
|
|
|
return;
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -1155,7 +1157,7 @@ void PrintRenderFrameHelper::PrintRequestedPages() {
|
2018-10-13 01:57:04 +00:00
|
|
|
// If we are printing a PDF extension frame, find the plugin node and print
|
|
|
|
// that instead.
|
|
|
|
auto plugin = delegate_->GetPdfElement(frame);
|
2019-01-08 23:59:47 +00:00
|
|
|
- Print(frame, plugin, PrintRequestType::kRegular);
|
2019-11-08 18:01:50 +00:00
|
|
|
+ Print(frame, plugin, PrintRequestType::kRegular, silent, std::move(settings));
|
2019-11-05 23:41:20 +00:00
|
|
|
if (!render_frame_gone_)
|
|
|
|
frame->DispatchAfterPrintEvent();
|
|
|
|
// WARNING: |this| may be gone at this point. Do not do any more work here and
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -1172,7 +1174,7 @@ void PrintRenderFrameHelper::PrintForSystemDialog() {
|
2019-11-05 23:41:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Print(frame, print_preview_context_.source_node(),
|
|
|
|
- PrintRequestType::kRegular);
|
|
|
|
+ PrintRequestType::kRegular, false, base::DictionaryValue());
|
|
|
|
if (!render_frame_gone_)
|
2018-10-13 01:57:04 +00:00
|
|
|
frame->DispatchAfterPrintEvent();
|
|
|
|
// WARNING: |this| may be gone at this point. Do not do any more work here and
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -1212,6 +1214,8 @@ void PrintRenderFrameHelper::PrintPreview(base::Value settings) {
|
2018-10-13 01:57:04 +00:00
|
|
|
if (ipc_nesting_level_ > 1)
|
|
|
|
return;
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
+ blink::WebLocalFrame* frame = render_frame()->GetWebFrame();
|
|
|
|
+ print_preview_context_.InitWithFrame(frame);
|
|
|
|
print_preview_context_.OnPrintPreview();
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-12-11 00:22:35 +00:00
|
|
|
base::UmaHistogramEnumeration(print_preview_context_.IsForArc()
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -1569,13 +1573,13 @@ bool PrintRenderFrameHelper::FinalizePrintReadyDocument() {
|
2020-01-16 05:05:36 +00:00
|
|
|
print_preview_context_.set_error(PREVIEW_ERROR_METAFILE_CAPTURE_FAILED);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
- } else {
|
|
|
|
- if (!CopyMetafileDataToReadOnlySharedMem(*metafile,
|
2020-01-17 18:41:52 +00:00
|
|
|
- &preview_params.content)) {
|
2020-01-16 05:05:36 +00:00
|
|
|
- LOG(ERROR) << "CopyMetafileDataToReadOnlySharedMem failed";
|
|
|
|
- print_preview_context_.set_error(PREVIEW_ERROR_METAFILE_COPY_FAILED);
|
|
|
|
- return false;
|
|
|
|
- }
|
2020-01-17 18:41:52 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!CopyMetafileDataToReadOnlySharedMem(*metafile,
|
|
|
|
+ &preview_params.content)) {
|
2020-01-16 05:05:36 +00:00
|
|
|
+ LOG(ERROR) << "CopyMetafileDataToReadOnlySharedMem failed";
|
|
|
|
+ print_preview_context_.set_error(PREVIEW_ERROR_METAFILE_COPY_FAILED);
|
|
|
|
+ return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
preview_params.document_cookie = print_pages_params_->params.document_cookie;
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -1710,7 +1714,9 @@ void PrintRenderFrameHelper::PrintNode(const blink::WebNode& node) {
|
2018-11-09 03:42:34 +00:00
|
|
|
|
|
|
|
auto self = weak_ptr_factory_.GetWeakPtr();
|
|
|
|
Print(duplicate_node.GetDocument().GetFrame(), duplicate_node,
|
2019-01-08 23:59:47 +00:00
|
|
|
- PrintRequestType::kRegular);
|
|
|
|
+ PrintRequestType::kRegular,
|
|
|
|
+ false /* silent */,
|
2018-11-09 03:42:34 +00:00
|
|
|
+ base::DictionaryValue() /* new_settings */);
|
|
|
|
// Check if |this| is still valid.
|
|
|
|
if (!self)
|
|
|
|
return;
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -1721,7 +1727,9 @@ void PrintRenderFrameHelper::PrintNode(const blink::WebNode& node) {
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
void PrintRenderFrameHelper::Print(blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebNode& node,
|
2019-01-08 23:59:47 +00:00
|
|
|
- PrintRequestType print_request_type) {
|
|
|
|
+ PrintRequestType print_request_type,
|
2018-10-13 01:57:04 +00:00
|
|
|
+ bool silent,
|
2019-11-08 18:01:50 +00:00
|
|
|
+ base::Value settings) {
|
2018-10-13 01:57:04 +00:00
|
|
|
// If still not finished with earlier print request simply ignore.
|
|
|
|
if (prep_frame_view_)
|
|
|
|
return;
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -1729,7 +1737,7 @@ void PrintRenderFrameHelper::Print(blink::WebLocalFrame* frame,
|
2019-02-26 21:35:27 +00:00
|
|
|
FrameReference frame_ref(frame);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
int expected_page_count = 0;
|
|
|
|
- if (!CalculateNumberOfPages(frame, node, &expected_page_count)) {
|
2019-11-08 18:01:50 +00:00
|
|
|
+ if (!CalculateNumberOfPages(frame, node, &expected_page_count, base::Value::AsDictionaryValue(settings))) {
|
2018-10-13 01:57:04 +00:00
|
|
|
DidFinishPrinting(FAIL_PRINT_INIT);
|
|
|
|
return; // Failed to init print page settings.
|
|
|
|
}
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -1749,8 +1757,11 @@ void PrintRenderFrameHelper::Print(blink::WebLocalFrame* frame,
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
PrintMsg_PrintPages_Params print_settings;
|
|
|
|
auto self = weak_ptr_factory_.GetWeakPtr();
|
|
|
|
- GetPrintSettingsFromUser(frame_ref.GetFrame(), node, expected_page_count,
|
2019-01-08 23:59:47 +00:00
|
|
|
- print_request_type, &print_settings);
|
2019-06-27 03:53:17 +00:00
|
|
|
+ if (silent)
|
|
|
|
+ print_settings = *print_pages_params_.get();
|
|
|
|
+ else
|
2018-10-13 01:57:04 +00:00
|
|
|
+ GetPrintSettingsFromUser(frame_ref.GetFrame(), node, expected_page_count,
|
2019-06-27 03:53:17 +00:00
|
|
|
+ print_request_type, &print_settings);
|
2018-10-13 01:57:04 +00:00
|
|
|
// Check if |this| is still valid.
|
|
|
|
if (!self)
|
|
|
|
return;
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -1984,10 +1995,23 @@ void PrintRenderFrameHelper::IPCProcessed() {
|
2019-09-21 14:51:28 +00:00
|
|
|
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, this);
|
2018-10-13 01:57:04 +00:00
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
-bool PrintRenderFrameHelper::InitPrintSettings(bool fit_to_paper_size) {
|
|
|
|
+bool PrintRenderFrameHelper::InitPrintSettings(
|
|
|
|
+ bool fit_to_paper_size,
|
2018-11-09 03:42:34 +00:00
|
|
|
+ const base::DictionaryValue& new_settings) {
|
2018-10-13 01:57:04 +00:00
|
|
|
PrintMsg_PrintPages_Params settings;
|
2018-11-09 03:42:34 +00:00
|
|
|
- Send(new PrintHostMsg_GetDefaultPrintSettings(routing_id(),
|
|
|
|
- &settings.params));
|
2019-08-13 06:44:14 +00:00
|
|
|
+ if (new_settings.empty()) {
|
|
|
|
+ // Send the default IPC message if caller is window.print()
|
|
|
|
+ Send(new PrintHostMsg_GetDefaultPrintSettings(routing_id(),
|
|
|
|
+ &settings.params));
|
|
|
|
+ } else {
|
|
|
|
+ // Send the update IPC message if caller is webContents.print()
|
|
|
|
+ bool canceled = false;
|
|
|
|
+ Send(new PrintHostMsg_UpdatePrintSettings(
|
|
|
|
+ routing_id(), 0, new_settings, &settings, &canceled));
|
|
|
|
+ if (canceled)
|
|
|
|
+ return false;
|
|
|
|
+ }
|
2019-08-07 14:47:24 +00:00
|
|
|
+
|
2018-10-13 01:57:04 +00:00
|
|
|
// Check if the printer returned any settings, if the settings is empty, we
|
|
|
|
// can safely assume there are no printer drivers configured. So we safely
|
|
|
|
// terminate.
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -2007,12 +2031,14 @@ bool PrintRenderFrameHelper::InitPrintSettings(bool fit_to_paper_size) {
|
2018-11-09 03:42:34 +00:00
|
|
|
return result;
|
|
|
|
}
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-11-09 03:42:34 +00:00
|
|
|
-bool PrintRenderFrameHelper::CalculateNumberOfPages(blink::WebLocalFrame* frame,
|
|
|
|
- const blink::WebNode& node,
|
2018-10-13 01:57:04 +00:00
|
|
|
- int* number_of_pages) {
|
2018-11-09 03:42:34 +00:00
|
|
|
+bool PrintRenderFrameHelper::CalculateNumberOfPages(
|
|
|
|
+ blink::WebLocalFrame* frame,
|
|
|
|
+ const blink::WebNode& node,
|
|
|
|
+ int* number_of_pages,
|
|
|
|
+ const base::DictionaryValue& settings) {
|
2018-10-13 01:57:04 +00:00
|
|
|
DCHECK(frame);
|
2019-01-16 18:07:52 +00:00
|
|
|
bool fit_to_paper_size = !IsPrintingNodeOrPdfFrame(frame, node);
|
2018-10-13 01:57:04 +00:00
|
|
|
- if (!InitPrintSettings(fit_to_paper_size)) {
|
2018-11-09 03:42:34 +00:00
|
|
|
+ if (!InitPrintSettings(fit_to_paper_size, settings)) {
|
2018-10-13 01:57:04 +00:00
|
|
|
notify_browser_of_print_failure_ = false;
|
|
|
|
Send(new PrintHostMsg_ShowInvalidPrinterSettingsError(routing_id()));
|
|
|
|
return false;
|
|
|
|
diff --git a/components/printing/renderer/print_render_frame_helper.h b/components/printing/renderer/print_render_frame_helper.h
|
2020-01-21 17:39:37 +00:00
|
|
|
index 51cfabd4dbeaa63538f4483c7a1948afaa665de1..0850b96b7511c494692a24026734d7574a390974 100644
|
2018-10-13 01:57:04 +00:00
|
|
|
--- a/components/printing/renderer/print_render_frame_helper.h
|
|
|
|
+++ b/components/printing/renderer/print_render_frame_helper.h
|
2020-01-17 18:41:52 +00:00
|
|
|
@@ -222,7 +222,7 @@ class PrintRenderFrameHelper
|
2019-11-05 23:41:20 +00:00
|
|
|
mojo::PendingAssociatedReceiver<mojom::PrintRenderFrame> receiver);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2019-11-05 23:41:20 +00:00
|
|
|
// printing::mojom::PrintRenderFrame:
|
|
|
|
- void PrintRequestedPages() override;
|
2019-11-08 18:01:50 +00:00
|
|
|
+ void PrintRequestedPages(bool silent, base::Value settings) override;
|
2019-11-05 23:41:20 +00:00
|
|
|
void PrintForSystemDialog() override;
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
2019-11-05 23:41:20 +00:00
|
|
|
void InitiatePrintPreview(
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -286,7 +286,9 @@ class PrintRenderFrameHelper
|
2018-10-13 01:57:04 +00:00
|
|
|
// WARNING: |this| may be gone after this method returns.
|
|
|
|
void Print(blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebNode& node,
|
2019-01-08 23:59:47 +00:00
|
|
|
- PrintRequestType print_request_type);
|
|
|
|
+ PrintRequestType print_request_type,
|
2018-11-09 03:42:34 +00:00
|
|
|
+ bool silent,
|
2019-11-08 18:01:50 +00:00
|
|
|
+ base::Value settings);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
// Notification when printing is done - signal tear-down/free resources.
|
|
|
|
void DidFinishPrinting(PrintingResult result);
|
2020-01-21 17:39:37 +00:00
|
|
|
@@ -295,12 +297,14 @@ class PrintRenderFrameHelper
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
// Initialize print page settings with default settings.
|
|
|
|
// Used only for native printing workflow.
|
|
|
|
- bool InitPrintSettings(bool fit_to_paper_size);
|
|
|
|
+ bool InitPrintSettings(bool fit_to_paper_size,
|
2018-11-09 03:42:34 +00:00
|
|
|
+ const base::DictionaryValue& settings);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
// Calculate number of pages in source document.
|
2018-11-09 03:42:34 +00:00
|
|
|
bool CalculateNumberOfPages(blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebNode& node,
|
2018-10-13 01:57:04 +00:00
|
|
|
- int* number_of_pages);
|
2018-11-09 03:42:34 +00:00
|
|
|
+ int* number_of_pages,
|
|
|
|
+ const base::DictionaryValue& settings);
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
|
// Set options for print preset from source PDF document.
|
2019-08-07 14:47:24 +00:00
|
|
|
diff --git a/printing/printing_context.cc b/printing/printing_context.cc
|
2019-10-28 22:12:35 +00:00
|
|
|
index 73940192472b1576a701cad3abbb92f2d72aa77e..bc0d39ccd113306691ae532e9fbc5b64c9aa0a33 100644
|
2019-08-07 14:47:24 +00:00
|
|
|
--- a/printing/printing_context.cc
|
|
|
|
+++ b/printing/printing_context.cc
|
2019-10-28 22:12:35 +00:00
|
|
|
@@ -90,8 +90,6 @@ PrintingContext::Result PrintingContext::UsePdfSettings() {
|
2019-08-07 14:47:24 +00:00
|
|
|
|
|
|
|
PrintingContext::Result PrintingContext::UpdatePrintSettings(
|
|
|
|
base::Value job_settings) {
|
|
|
|
- ResetSettings();
|
|
|
|
-
|
2019-08-24 01:14:23 +00:00
|
|
|
if (!PrintSettingsFromJobSettings(job_settings, settings_.get())) {
|
2019-08-07 14:47:24 +00:00
|
|
|
NOTREACHED();
|
|
|
|
return OnError();
|
|
|
|
diff --git a/printing/printing_context.h b/printing/printing_context.h
|
2019-09-18 19:58:00 +00:00
|
|
|
index 6a5a7c90ef5ba82837095c7bb934881b108797f7..a033c58076ff229ae45ed7c454fc60a57e5707b7 100644
|
2019-08-07 14:47:24 +00:00
|
|
|
--- a/printing/printing_context.h
|
|
|
|
+++ b/printing/printing_context.h
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -131,12 +131,12 @@ class PRINTING_EXPORT PrintingContext {
|
2019-08-07 14:47:24 +00:00
|
|
|
|
|
|
|
int job_id() const { return job_id_; }
|
|
|
|
|
|
|
|
- protected:
|
|
|
|
- explicit PrintingContext(Delegate* delegate);
|
|
|
|
-
|
|
|
|
// Reinitializes the settings for object reuse.
|
|
|
|
void ResetSettings();
|
|
|
|
|
|
|
|
+ protected:
|
|
|
|
+ explicit PrintingContext(Delegate* delegate);
|
|
|
|
+
|
|
|
|
// Does bookkeeping when an error occurs.
|
|
|
|
PrintingContext::Result OnError();
|
|
|
|
|