2018-10-24 21:24:11 +03:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-06-12 22:34:07 +03:00
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Fri, 7 Jun 2019 13:59:37 -0700
|
2019-08-24 04:14:23 +03:00
|
|
|
Subject: printing.patch
|
2018-10-24 21:24:11 +03: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 22:34:07 +03:00
|
|
|
This patch also fixes callback for manual user cancellation and success.
|
|
|
|
|
2020-06-22 20:35:10 +03:00
|
|
|
diff --git a/chrome/browser/printing/print_job.cc b/chrome/browser/printing/print_job.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
index 0de0532d64897c91ce0f72d165976e12e1dec03e..13167ca3f9c0d4895fecd40ab1e2d397c6e85a0b 100644
|
2020-06-22 20:35:10 +03:00
|
|
|
--- a/chrome/browser/printing/print_job.cc
|
|
|
|
+++ b/chrome/browser/printing/print_job.cc
|
2021-10-21 21:51:36 +03:00
|
|
|
@@ -88,6 +88,7 @@ bool PrintWithReducedRasterization(PrefService* prefs) {
|
2021-10-06 05:21:00 +03:00
|
|
|
return base::FeatureList::IsEnabled(features::kPrintWithReducedRasterization);
|
|
|
|
}
|
|
|
|
|
|
|
|
+#if 0
|
|
|
|
PrefService* GetPrefsForWebContents(content::WebContents* web_contents) {
|
|
|
|
// TODO(thestig): Figure out why crbug.com/1083911 occurred, which is likely
|
|
|
|
// because `web_contents` was null. As a result, this section has many more
|
2021-10-21 21:51:36 +03:00
|
|
|
@@ -96,6 +97,7 @@ PrefService* GetPrefsForWebContents(content::WebContents* web_contents) {
|
2021-10-06 05:21:00 +03:00
|
|
|
web_contents ? web_contents->GetBrowserContext() : nullptr;
|
|
|
|
return context ? Profile::FromBrowserContext(context)->GetPrefs() : nullptr;
|
|
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
#endif // defined(OS_WIN)
|
|
|
|
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -355,8 +357,10 @@ void PrintJob::StartPdfToEmfConversion(
|
|
|
|
|
2020-09-30 21:42:57 +03:00
|
|
|
const PrintSettings& settings = document()->settings();
|
|
|
|
|
2020-06-22 20:35:10 +03:00
|
|
|
+#if 0
|
2021-10-06 05:21:00 +03:00
|
|
|
PrefService* prefs = GetPrefsForWebContents(worker_->GetWebContents());
|
2020-06-22 20:35:10 +03:00
|
|
|
- bool print_with_reduced_rasterization = PrintWithReducedRasterization(prefs);
|
|
|
|
+#endif
|
|
|
|
+ bool print_with_reduced_rasterization = PrintWithReducedRasterization(nullptr);
|
|
|
|
|
|
|
|
using RenderMode = PdfRenderSettings::Mode;
|
2022-01-11 01:31:39 +03:00
|
|
|
RenderMode mode = print_with_reduced_rasterization
|
|
|
|
@@ -446,8 +450,10 @@ void PrintJob::StartPdfToPostScriptConversion(
|
2021-10-06 05:21:00 +03:00
|
|
|
if (ps_level2) {
|
|
|
|
mode = PdfRenderSettings::Mode::POSTSCRIPT_LEVEL2;
|
|
|
|
} else {
|
|
|
|
+#if 0
|
|
|
|
PrefService* prefs = GetPrefsForWebContents(worker_->GetWebContents());
|
|
|
|
- mode = PrintWithPostScriptType42Fonts(prefs)
|
|
|
|
+#endif
|
|
|
|
+ mode = PrintWithPostScriptType42Fonts(nullptr)
|
|
|
|
? PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3_WITH_TYPE42_FONTS
|
|
|
|
: PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;
|
|
|
|
}
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -504,6 +510,20 @@ void PrintJob::OnPageDone(PrintedPage* page) {
|
|
|
|
}
|
|
|
|
#endif // defined(OS_WIN)
|
|
|
|
|
|
|
|
+void PrintJob::OnUserInitCancelled() {
|
|
|
|
+ DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
+ // Make sure a `Cancel()` is broadcast.
|
|
|
|
+ auto details = base::MakeRefCounted<JobEventDetails>(JobEventDetails::USER_INIT_CANCELED,
|
|
|
|
+ 0, nullptr);
|
|
|
|
+ content::NotificationService::current()->Notify(
|
|
|
|
+ chrome::NOTIFICATION_PRINT_JOB_EVENT, content::Source<PrintJob>(this),
|
|
|
|
+ content::Details<JobEventDetails>(details.get()));
|
|
|
|
+
|
|
|
|
+ for (auto& observer : observers_) {
|
|
|
|
+ observer.OnUserInitCancelled();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void PrintJob::OnFailed() {
|
2021-07-26 19:02:16 +03:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
|
|
|
|
diff --git a/chrome/browser/printing/print_job.h b/chrome/browser/printing/print_job.h
|
2022-01-11 01:31:39 +03:00
|
|
|
index e19f62354edb8acad722c6680296b7d2f55f51fe..b5539171655d78634ee89faf3516d23ce5718353 100644
|
2021-07-26 19:02:16 +03:00
|
|
|
--- a/chrome/browser/printing/print_job.h
|
|
|
|
+++ b/chrome/browser/printing/print_job.h
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -53,6 +53,7 @@ class PrintJob : public base::RefCountedThreadSafe<PrintJob> {
|
|
|
|
public:
|
|
|
|
virtual void OnDocDone(int job_id, PrintedDocument* document) {}
|
|
|
|
virtual void OnJobDone() {}
|
|
|
|
+ virtual void OnUserInitCancelled() {}
|
|
|
|
virtual void OnFailed() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
@@ -100,6 +101,9 @@ class PrintJob : public base::RefCountedThreadSafe<PrintJob> {
|
|
|
|
// Called when the document is done printing.
|
|
|
|
virtual void OnDocDone(int job_id, PrintedDocument* document);
|
|
|
|
|
|
|
|
+ // Called if the user cancels the print job.
|
|
|
|
+ virtual void OnUserInitCancelled();
|
|
|
|
+
|
|
|
|
// Called if the document fails to print.
|
|
|
|
virtual void OnFailed();
|
|
|
|
|
|
|
|
@@ -257,6 +261,9 @@ class JobEventDetails : public base::RefCountedThreadSafe<JobEventDetails> {
|
2021-07-26 19:02:16 +03:00
|
|
|
public:
|
|
|
|
// Event type.
|
|
|
|
enum Type {
|
|
|
|
+ // Print... dialog box has been closed with CANCEL button.
|
|
|
|
+ USER_INIT_CANCELED,
|
|
|
|
+
|
|
|
|
// A new document started printing.
|
|
|
|
NEW_DOC,
|
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
diff --git a/chrome/browser/printing/print_job_worker.cc b/chrome/browser/printing/print_job_worker.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
index d8f67ab5116483eb2eeb4cc09f19bbcbccb74b37..b4ab0984765c9711ddacf32f7147108cdfbc5096 100644
|
2018-10-13 04:57:04 +03:00
|
|
|
--- a/chrome/browser/printing/print_job_worker.cc
|
|
|
|
+++ b/chrome/browser/printing/print_job_worker.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -20,13 +20,13 @@
|
|
|
|
#include "build/build_config.h"
|
2018-10-13 04:57:04 +03:00
|
|
|
#include "chrome/browser/browser_process.h"
|
|
|
|
#include "chrome/browser/printing/print_job.h"
|
|
|
|
-#include "chrome/grit/generated_resources.h"
|
2019-10-29 01:12:35 +03:00
|
|
|
#include "components/crash/core/common/crash_keys.h"
|
2022-01-11 01:31:39 +03:00
|
|
|
#include "components/device_event_log/device_event_log.h"
|
2019-01-12 04:00:43 +03:00
|
|
|
#include "content/public/browser/browser_task_traits.h"
|
2018-10-13 04:57:04 +03:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
#include "content/public/browser/render_frame_host.h"
|
2019-01-12 04:00:43 +03:00
|
|
|
#include "content/public/browser/web_contents.h"
|
|
|
|
+#include "electron/grit/electron_resources.h"
|
2021-07-26 19:02:16 +03:00
|
|
|
#include "printing/backend/print_backend.h"
|
2021-10-21 21:51:36 +03:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
2021-07-26 19:02:16 +03:00
|
|
|
#include "printing/mojom/print.mojom.h"
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -125,6 +125,10 @@ void FailedNotificationCallback(PrintJob* print_job) {
|
|
|
|
print_job->OnFailed();
|
|
|
|
}
|
|
|
|
|
|
|
|
+void UserInitCancelledNotificationCallback(PrintJob* print_job) {
|
|
|
|
+ print_job->OnUserInitCancelled();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
void PageNotificationCallback(PrintJob* print_job, PrintedPage* page) {
|
|
|
|
print_job->OnPageDone(page);
|
|
|
|
@@ -245,16 +249,21 @@ void PrintJobWorker::UpdatePrintSettings(base::Value new_settings,
|
2021-05-14 04:21:36 +03:00
|
|
|
#endif // defined(OS_LINUX) && defined(USE_CUPS)
|
2019-10-29 01:12:35 +03:00
|
|
|
}
|
|
|
|
|
2021-10-21 21:51:36 +03:00
|
|
|
- mojom::ResultCode result;
|
2020-04-14 02:39:26 +03:00
|
|
|
{
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Blocking is needed here because Windows printer drivers are oftentimes
|
|
|
|
// not thread-safe and have to be accessed on the UI thread.
|
|
|
|
base::ScopedAllowBlocking allow_blocking;
|
|
|
|
#endif
|
|
|
|
- result = printing_context_->UpdatePrintSettings(std::move(new_settings));
|
|
|
|
+ // Reset settings from previous print job
|
|
|
|
+ printing_context_->ResetSettings();
|
2021-10-21 21:51:36 +03:00
|
|
|
+ mojom::ResultCode get_default_result = printing_context_->UseDefaultSettings();
|
|
|
|
+ if (get_default_result == mojom::ResultCode::kSuccess) {
|
|
|
|
+ mojom::ResultCode update_result =
|
2020-04-14 02:39:26 +03:00
|
|
|
+ printing_context_->UpdatePrintSettings(std::move(new_settings));
|
|
|
|
+ GetSettingsDone(std::move(callback), update_result);
|
|
|
|
+ }
|
|
|
|
}
|
2019-08-07 17:47:24 +03:00
|
|
|
- GetSettingsDone(std::move(callback), result);
|
|
|
|
}
|
|
|
|
|
2021-07-26 19:02:16 +03:00
|
|
|
#if defined(OS_CHROMEOS)
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -270,6 +279,12 @@ void PrintJobWorker::UpdatePrintSettingsFromPOD(
|
2019-06-12 22:34:07 +03:00
|
|
|
|
|
|
|
void PrintJobWorker::GetSettingsDone(SettingsCallback callback,
|
2021-10-21 21:51:36 +03:00
|
|
|
mojom::ResultCode result) {
|
|
|
|
+ if (result == mojom::ResultCode::kCanceled) {
|
2019-06-12 22:34:07 +03:00
|
|
|
+ print_job_->PostTask(
|
|
|
|
+ FROM_HERE,
|
2022-01-11 01:31:39 +03:00
|
|
|
+ base::BindOnce(&UserInitCancelledNotificationCallback,
|
|
|
|
+ base::RetainedRef(print_job_.get())));
|
2019-06-12 22:34:07 +03:00
|
|
|
+ }
|
2019-08-24 04:14:23 +03:00
|
|
|
std::move(callback).Run(printing_context_->TakeAndResetSettings(), result);
|
2019-06-12 22:34:07 +03:00
|
|
|
}
|
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/printing/print_view_manager_base.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
index c9f1502da55d89de0eede73a7d39047c090594d0..1320afa83016ea72e5dbc23b1ed63cf91d439102 100644
|
2018-10-13 04:57:04 +03:00
|
|
|
--- a/chrome/browser/printing/print_view_manager_base.cc
|
|
|
|
+++ b/chrome/browser/printing/print_view_manager_base.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -29,10 +29,10 @@
|
2018-11-09 06:42:34 +03:00
|
|
|
#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 04:57:04 +03:00
|
|
|
#include "chrome/common/pref_names.h"
|
2021-02-09 23:16:21 +03:00
|
|
|
+#if 0
|
|
|
|
#include "chrome/grit/generated_resources.h"
|
|
|
|
+#endif
|
2018-10-13 04:57:04 +03:00
|
|
|
#include "components/prefs/pref_service.h"
|
|
|
|
#include "components/printing/browser/print_composite_client.h"
|
2021-02-09 23:16:21 +03:00
|
|
|
#include "components/printing/browser/print_manager_utils.h"
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -47,6 +47,7 @@
|
2018-11-09 06:42:34 +03:00
|
|
|
#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 10:16:43 +03:00
|
|
|
#include "printing/metafile_skia.h"
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -110,6 +111,8 @@ crosapi::mojom::PrintJobPtr PrintJobToMojom(int job_id,
|
2021-05-14 04:21:36 +03:00
|
|
|
#endif
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2021-03-15 21:32:18 +03:00
|
|
|
void ShowWarningMessageBox(const std::u16string& message) {
|
2018-10-13 04:57:04 +03:00
|
|
|
+ LOG(ERROR) << "Invalid printer settings " << message;
|
|
|
|
+#if 0
|
|
|
|
// Runs always on the UI thread.
|
|
|
|
static bool is_dialog_shown = false;
|
|
|
|
if (is_dialog_shown)
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -118,6 +121,7 @@ void ShowWarningMessageBox(const std::u16string& message) {
|
2018-10-13 04:57:04 +03:00
|
|
|
base::AutoReset<bool> auto_reset(&is_dialog_shown, true);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2021-03-15 21:32:18 +03:00
|
|
|
chrome::ShowWarningMessageBox(nullptr, std::u16string(), message);
|
2019-07-03 04:22:09 +03:00
|
|
|
+#endif
|
2018-10-13 04:57:04 +03:00
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -217,7 +221,9 @@ void UpdatePrintSettingsReplyOnIO(
|
2021-06-03 11:05:04 +03:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
2020-10-28 03:33:04 +03:00
|
|
|
DCHECK(printer_query);
|
2021-06-03 11:05:04 +03:00
|
|
|
mojom::PrintPagesParamsPtr params = CreateEmptyPrintPagesParamsPtr();
|
2021-10-21 21:51:36 +03:00
|
|
|
- if (printer_query->last_status() == mojom::ResultCode::kSuccess) {
|
2020-10-28 03:33:04 +03:00
|
|
|
+ // We call update without first printing from defaults,
|
|
|
|
+ // so the last printer status will still be defaulted to PrintingContext::FAILED
|
|
|
|
+ if (printer_query) {
|
|
|
|
RenderParamsFromPrintSettings(printer_query->settings(),
|
|
|
|
params->params.get());
|
|
|
|
params->params->document_cookie = printer_query->cookie();
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -319,12 +325,14 @@ PrintViewManagerBase::PrintViewManagerBase(content::WebContents* web_contents)
|
2020-09-21 11:00:36 +03:00
|
|
|
: PrintManager(web_contents),
|
2019-07-25 01:58:51 +03:00
|
|
|
queue_(g_browser_process->print_job_manager()->queue()) {
|
2018-10-13 04:57:04 +03:00
|
|
|
DCHECK(queue_);
|
2020-10-20 00:31:25 +03:00
|
|
|
+#if 0 // Printing is always enabled.
|
2018-10-13 04:57:04 +03:00
|
|
|
Profile* profile =
|
|
|
|
Profile::FromBrowserContext(web_contents->GetBrowserContext());
|
|
|
|
printing_enabled_.Init(
|
|
|
|
prefs::kPrintingEnabled, profile->GetPrefs(),
|
2019-07-03 04:22:09 +03:00
|
|
|
base::BindRepeating(&PrintViewManagerBase::UpdatePrintingEnabled,
|
|
|
|
weak_ptr_factory_.GetWeakPtr()));
|
|
|
|
+#endif
|
2018-10-13 04:57:04 +03:00
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
PrintViewManagerBase::~PrintViewManagerBase() {
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -332,7 +340,10 @@ PrintViewManagerBase::~PrintViewManagerBase() {
|
2018-10-13 04:57:04 +03:00
|
|
|
DisconnectFromCurrentPrintJob();
|
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
-bool PrintViewManagerBase::PrintNow(content::RenderFrameHost* rfh) {
|
|
|
|
+bool PrintViewManagerBase::PrintNow(content::RenderFrameHost* rfh,
|
2019-11-08 21:01:50 +03:00
|
|
|
+ bool silent,
|
|
|
|
+ base::Value settings,
|
|
|
|
+ CompletionCallback callback) {
|
2021-08-12 00:04:56 +03:00
|
|
|
auto weak_this = weak_ptr_factory_.GetWeakPtr();
|
2018-10-13 04:57:04 +03:00
|
|
|
DisconnectFromCurrentPrintJob();
|
2021-08-12 00:04:56 +03:00
|
|
|
if (!weak_this)
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -347,7 +358,13 @@ bool PrintViewManagerBase::PrintNow(content::RenderFrameHost* rfh) {
|
2021-07-26 19:02:16 +03:00
|
|
|
// go in `ReleasePrintJob()`.
|
2019-11-06 02:41:20 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
SetPrintingRFH(rfh);
|
2019-11-06 02:41:20 +03:00
|
|
|
- GetPrintRenderFrame(rfh)->PrintRequestedPages();
|
2018-11-09 06:42:34 +03:00
|
|
|
+ callback_ = std::move(callback);
|
2019-11-08 21:01:50 +03:00
|
|
|
+
|
|
|
|
+ if (!callback_.is_null()) {
|
2022-01-11 01:31:39 +03:00
|
|
|
+ print_job_->AddObserver(*this);
|
2019-11-08 21:01:50 +03:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ GetPrintRenderFrame(rfh)->PrintRequestedPages(silent, std::move(settings));
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2021-10-21 21:51:36 +03:00
|
|
|
for (auto& observer : GetObservers())
|
|
|
|
observer.OnPrintNow(rfh);
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -506,9 +523,9 @@ void PrintViewManagerBase::ScriptedPrintReply(
|
2018-11-09 06:42:34 +03:00
|
|
|
void PrintViewManagerBase::UpdatePrintingEnabled() {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
2018-10-13 04:57:04 +03:00
|
|
|
// The Unretained() is safe because ForEachFrame() is synchronous.
|
2018-11-09 06:42:34 +03:00
|
|
|
- web_contents()->ForEachFrame(base::BindRepeating(
|
|
|
|
- &PrintViewManagerBase::SendPrintingEnabled, base::Unretained(this),
|
2018-10-13 04:57:04 +03:00
|
|
|
- printing_enabled_.GetValue()));
|
2018-11-09 06:42:34 +03:00
|
|
|
+ web_contents()->ForEachFrame(
|
|
|
|
+ base::BindRepeating(&PrintViewManagerBase::SendPrintingEnabled,
|
|
|
|
+ base::Unretained(this), true));
|
2018-10-13 04:57:04 +03:00
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
void PrintViewManagerBase::NavigationStopped() {
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -622,12 +639,13 @@ void PrintViewManagerBase::DidPrintDocument(
|
2020-10-20 00:31:25 +03:00
|
|
|
void PrintViewManagerBase::GetDefaultPrintSettings(
|
|
|
|
GetDefaultPrintSettingsCallback callback) {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
+#if 0 // Printing is always enabled.
|
|
|
|
if (!printing_enabled_.GetValue()) {
|
2021-06-03 11:05:04 +03:00
|
|
|
GetDefaultPrintSettingsReply(std::move(callback),
|
|
|
|
mojom::PrintParams::New());
|
2020-10-20 00:31:25 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
-
|
|
|
|
+#endif
|
2021-06-03 11:05:04 +03:00
|
|
|
content::RenderFrameHost* render_frame_host = GetCurrentTargetFrame();
|
|
|
|
auto callback_wrapper =
|
|
|
|
base::BindOnce(&PrintViewManagerBase::GetDefaultPrintSettingsReply,
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -645,18 +663,20 @@ void PrintViewManagerBase::UpdatePrintSettings(
|
2020-10-28 03:33:04 +03:00
|
|
|
base::Value job_settings,
|
|
|
|
UpdatePrintSettingsCallback callback) {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
2021-06-03 11:05:04 +03:00
|
|
|
+#if 0 // Printing is always enabled.
|
2020-10-28 03:33:04 +03:00
|
|
|
if (!printing_enabled_.GetValue()) {
|
2021-06-03 11:05:04 +03:00
|
|
|
UpdatePrintSettingsReply(std::move(callback),
|
|
|
|
CreateEmptyPrintPagesParamsPtr(), false);
|
2020-10-28 03:33:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
-
|
2021-06-03 11:05:04 +03:00
|
|
|
+#endif
|
2020-10-28 03:33:04 +03:00
|
|
|
if (!job_settings.FindIntKey(kSettingPrinterType)) {
|
2021-06-03 11:05:04 +03:00
|
|
|
UpdatePrintSettingsReply(std::move(callback),
|
|
|
|
CreateEmptyPrintPagesParamsPtr(), false);
|
2021-08-24 03:52:17 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
+#if 0
|
|
|
|
content::BrowserContext* context =
|
|
|
|
web_contents() ? web_contents()->GetBrowserContext() : nullptr;
|
|
|
|
PrefService* prefs =
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -666,6 +686,7 @@ void PrintViewManagerBase::UpdatePrintSettings(
|
2021-08-24 03:52:17 +03:00
|
|
|
if (value > 0)
|
|
|
|
job_settings.SetIntKey(kSettingRasterizePdfDpi, value);
|
|
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
auto callback_wrapper =
|
2022-01-11 01:31:39 +03:00
|
|
|
base::BindOnce(&PrintViewManagerBase::UpdatePrintSettingsReply,
|
|
|
|
@@ -714,7 +735,6 @@ void PrintViewManagerBase::PrintingFailed(int32_t cookie) {
|
2020-09-21 11:00:36 +03:00
|
|
|
PrintManager::PrintingFailed(cookie);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
2018-11-09 06:42:34 +03:00
|
|
|
- ShowPrintErrorDialog();
|
2018-10-13 04:57:04 +03:00
|
|
|
#endif
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
ReleasePrinterQuery();
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -729,6 +749,11 @@ void PrintViewManagerBase::RemoveObserver(Observer& observer) {
|
2020-07-10 19:42:22 +03:00
|
|
|
}
|
|
|
|
|
2020-09-21 11:00:36 +03:00
|
|
|
void PrintViewManagerBase::ShowInvalidPrinterSettingsError() {
|
2020-07-10 19:42:22 +03:00
|
|
|
+ if (!callback_.is_null()) {
|
|
|
|
+ std::string cb_str = "Invalid printer settings";
|
|
|
|
+ std::move(callback_).Run(printing_succeeded_, cb_str);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
base::ThreadTaskRunnerHandle::Get()->PostTask(
|
|
|
|
FROM_HERE, base::BindOnce(&ShowWarningMessageBox,
|
|
|
|
l10n_util::GetStringUTF16(
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -739,8 +764,10 @@ void PrintViewManagerBase::RenderFrameHostStateChanged(
|
2021-11-24 11:45:59 +03:00
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
content::RenderFrameHost::LifecycleState /*old_state*/,
|
|
|
|
content::RenderFrameHost::LifecycleState new_state) {
|
|
|
|
+#if 0 // Printing is always enabled.
|
|
|
|
if (new_state == content::RenderFrameHost::LifecycleState::kActive)
|
|
|
|
SendPrintingEnabled(printing_enabled_.GetValue(), render_frame_host);
|
|
|
|
+#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintViewManagerBase::DidStartLoading() {
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -808,6 +835,11 @@ void PrintViewManagerBase::OnJobDone() {
|
|
|
|
ReleasePrintJob();
|
|
|
|
}
|
|
|
|
|
|
|
|
+void PrintViewManagerBase::OnUserInitCancelled() {
|
|
|
|
+ printing_cancelled_ = true;
|
|
|
|
+ ReleasePrintJob();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void PrintViewManagerBase::OnFailed() {
|
|
|
|
TerminatePrintJob(true);
|
|
|
|
}
|
|
|
|
@@ -869,7 +901,10 @@ bool PrintViewManagerBase::CreateNewPrintJob(
|
2019-06-12 22:34:07 +03:00
|
|
|
|
2021-08-12 00:04:56 +03:00
|
|
|
// Disconnect the current |print_job_|.
|
|
|
|
auto weak_this = weak_ptr_factory_.GetWeakPtr();
|
2019-06-12 22:34:07 +03:00
|
|
|
- DisconnectFromCurrentPrintJob();
|
2020-01-27 21:54:56 +03:00
|
|
|
+ if (callback_.is_null()) {
|
|
|
|
+ // Disconnect the current |print_job_| only when calling window.print()
|
|
|
|
+ DisconnectFromCurrentPrintJob();
|
|
|
|
+ }
|
2021-08-12 00:04:56 +03:00
|
|
|
if (!weak_this)
|
|
|
|
return false;
|
2019-07-03 04:22:09 +03:00
|
|
|
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -891,8 +926,6 @@ bool PrintViewManagerBase::CreateNewPrintJob(
|
|
|
|
: PrintJob::Source::PRINT_PREVIEW,
|
2021-02-09 23:16:21 +03:00
|
|
|
/*source_id=*/"");
|
2020-05-26 23:06:26 +03:00
|
|
|
#endif
|
2022-01-11 01:31:39 +03:00
|
|
|
- print_job_->AddObserver(*this);
|
|
|
|
-
|
2019-06-12 22:34:07 +03:00
|
|
|
printing_succeeded_ = false;
|
|
|
|
return true;
|
|
|
|
}
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -944,14 +977,21 @@ void PrintViewManagerBase::ReleasePrintJob() {
|
2018-10-13 04:57:04 +03:00
|
|
|
content::RenderFrameHost* rfh = printing_rfh_;
|
|
|
|
printing_rfh_ = nullptr;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-07-02 00:03:19 +03:00
|
|
|
+ if (!callback_.is_null()) {
|
2022-01-11 01:31:39 +03:00
|
|
|
+ print_job_->RemoveObserver(*this);
|
2020-08-20 09:28:24 +03:00
|
|
|
+
|
2019-07-02 00:03:19 +03:00
|
|
|
+ std::string cb_str = "";
|
|
|
|
+ if (!printing_succeeded_)
|
|
|
|
+ cb_str = printing_cancelled_ ? "cancelled" : "failed";
|
|
|
|
+ std::move(callback_).Run(printing_succeeded_, cb_str);
|
|
|
|
+ }
|
2018-10-13 04:57:04 +03:00
|
|
|
+
|
|
|
|
if (!print_job_)
|
|
|
|
return;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-11-06 02:41:20 +03:00
|
|
|
if (rfh)
|
|
|
|
GetPrintRenderFrame(rfh)->PrintingDone(printing_succeeded_);
|
2019-06-12 22:34:07 +03:00
|
|
|
|
2022-01-11 01:31:39 +03:00
|
|
|
- print_job_->RemoveObserver(*this);
|
|
|
|
-
|
2019-06-12 22:34:07 +03:00
|
|
|
// Don't close the worker thread.
|
|
|
|
print_job_ = nullptr;
|
|
|
|
}
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -989,7 +1029,7 @@ bool PrintViewManagerBase::RunInnerMessageLoop() {
|
2020-01-27 21:54:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool PrintViewManagerBase::OpportunisticallyCreatePrintJob(int cookie) {
|
|
|
|
- if (print_job_)
|
|
|
|
+ if (print_job_ && print_job_->document())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!cookie) {
|
2018-10-13 04:57:04 +03:00
|
|
|
diff --git a/chrome/browser/printing/print_view_manager_base.h b/chrome/browser/printing/print_view_manager_base.h
|
2022-01-11 01:31:39 +03:00
|
|
|
index 5771a3ebd76145c6cf8a2ccc33abc886802ed59f..1562d6331a9cafd530db42c436e878bac427566d 100644
|
2018-10-13 04:57:04 +03:00
|
|
|
--- a/chrome/browser/printing/print_view_manager_base.h
|
|
|
|
+++ b/chrome/browser/printing/print_view_manager_base.h
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -37,6 +37,8 @@ namespace printing {
|
2018-11-09 06:42:34 +03:00
|
|
|
class PrintQueriesQueue;
|
|
|
|
class PrinterQuery;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-07-02 00:03:19 +03:00
|
|
|
+using CompletionCallback = base::OnceCallback<void(bool, const std::string&)>;
|
2018-11-09 06:42:34 +03:00
|
|
|
+
|
|
|
|
// Base class for managing the print commands for a WebContents.
|
2022-01-11 01:31:39 +03:00
|
|
|
class PrintViewManagerBase : public PrintManager, public PrintJob::Observer {
|
|
|
|
public:
|
|
|
|
@@ -58,7 +60,10 @@ class PrintViewManagerBase : public PrintManager, public PrintJob::Observer {
|
2018-10-13 04:57:04 +03: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 21:01:50 +03:00
|
|
|
+ bool silent,
|
|
|
|
+ base::Value settings,
|
2018-11-09 06:42:34 +03:00
|
|
|
+ CompletionCallback callback);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
|
// Prints the document in |print_data| with settings specified in
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -143,6 +148,7 @@ class PrintViewManagerBase : public PrintManager, public PrintJob::Observer {
|
|
|
|
// PrintJob::Observer overrides:
|
|
|
|
void OnDocDone(int job_id, PrintedDocument* document) override;
|
|
|
|
void OnJobDone() override;
|
|
|
|
+ void OnUserInitCancelled() override;
|
|
|
|
void OnFailed() override;
|
|
|
|
|
|
|
|
base::ObserverList<Observer>& GetObservers() { return observers_; }
|
|
|
|
@@ -252,9 +258,15 @@ class PrintViewManagerBase : public PrintManager, public PrintJob::Observer {
|
2018-11-09 06:42:34 +03:00
|
|
|
// The current RFH that is printing with a system printing dialog.
|
2022-01-11 01:31:39 +03:00
|
|
|
raw_ptr<content::RenderFrameHost> printing_rfh_ = nullptr;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-06-12 22:34:07 +03:00
|
|
|
+ // Respond with success of the print job.
|
2018-11-09 06:42:34 +03:00
|
|
|
+ CompletionCallback callback_;
|
2018-10-13 04:57:04 +03:00
|
|
|
+
|
2018-11-09 06:42:34 +03:00
|
|
|
// Indication of success of the print job.
|
2020-09-21 11:00:36 +03:00
|
|
|
bool printing_succeeded_ = false;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-07-02 00:03:19 +03: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.
|
2019-11-06 02:41:20 +03:00
|
|
|
diff --git a/components/printing/common/print.mojom b/components/printing/common/print.mojom
|
2021-08-24 03:52:17 +03:00
|
|
|
index 51ebcb4ae399018d3fd8566656596a7ef1f148af..5f2b807fc364131f4c3e6a1646ec522ddc826d9c 100644
|
2019-11-06 02:41:20 +03:00
|
|
|
--- a/components/printing/common/print.mojom
|
|
|
|
+++ b/components/printing/common/print.mojom
|
2021-08-24 03:52:17 +03:00
|
|
|
@@ -274,7 +274,7 @@ interface PrintPreviewUI {
|
2019-11-06 02:41:20 +03: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 21:01:50 +03:00
|
|
|
+ PrintRequestedPages(bool silent, mojo_base.mojom.DictionaryValue settings);
|
2019-11-06 02:41:20 +03: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 04:57:04 +03:00
|
|
|
diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/printing/renderer/print_render_frame_helper.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
index 650b5550f982fa5c5c522efaa9b8e305b7edc5e7..260b5521dccadf07eba2c67fa3d9c3da80b49104 100644
|
2018-10-13 04:57:04 +03:00
|
|
|
--- a/components/printing/renderer/print_render_frame_helper.cc
|
|
|
|
+++ b/components/printing/renderer/print_render_frame_helper.cc
|
2021-11-24 11:45:59 +03:00
|
|
|
@@ -39,6 +39,7 @@
|
2019-06-27 06:53:17 +03:00
|
|
|
#include "printing/metafile_skia.h"
|
2020-05-26 23:06:26 +03:00
|
|
|
#include "printing/mojom/print.mojom.h"
|
2021-02-09 23:16:21 +03:00
|
|
|
#include "printing/print_job_constants.h"
|
2019-06-27 06:53:17 +03:00
|
|
|
+#include "printing/print_settings.h"
|
|
|
|
#include "printing/units.h"
|
2020-08-15 04:51:28 +03:00
|
|
|
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
|
2019-09-18 22:58:00 +03:00
|
|
|
#include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h"
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1226,7 +1227,8 @@ void PrintRenderFrameHelper::ScriptedPrint(bool user_initiated) {
|
2020-10-16 04:30:41 +03:00
|
|
|
if (!weak_this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
- Print(web_frame, blink::WebNode(), PrintRequestType::kScripted);
|
|
|
|
+ Print(web_frame, blink::WebNode(), PrintRequestType::kScripted,
|
|
|
|
+ false /* silent */, base::DictionaryValue() /* new_settings */);
|
2021-05-06 02:26:17 +03:00
|
|
|
if (!weak_this)
|
|
|
|
return;
|
2020-09-21 11:00:36 +03:00
|
|
|
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1257,7 +1259,7 @@ void PrintRenderFrameHelper::BindPrintRenderFrameReceiver(
|
2019-11-06 02:41:20 +03:00
|
|
|
receivers_.Add(this, std::move(receiver));
|
2018-10-13 04:57:04 +03:00
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-11-06 02:41:20 +03:00
|
|
|
-void PrintRenderFrameHelper::PrintRequestedPages() {
|
2019-11-08 21:01:50 +03:00
|
|
|
+void PrintRenderFrameHelper::PrintRequestedPages(bool silent, base::Value settings) {
|
2019-11-06 02:41:20 +03:00
|
|
|
ScopedIPC scoped_ipc(weak_ptr_factory_.GetWeakPtr());
|
2021-07-26 19:02:16 +03:00
|
|
|
if (ipc_nesting_level_ > kAllowedIpcDepthForPrint)
|
2018-10-13 04:57:04 +03:00
|
|
|
return;
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1272,7 +1274,7 @@ void PrintRenderFrameHelper::PrintRequestedPages() {
|
2021-11-24 11:45:59 +03:00
|
|
|
// plugin node and print that instead.
|
2020-10-16 04:30:41 +03:00
|
|
|
auto plugin = delegate_->GetPdfElement(frame);
|
2020-09-21 11:00:36 +03:00
|
|
|
|
2020-10-16 04:30:41 +03:00
|
|
|
- Print(frame, plugin, PrintRequestType::kRegular);
|
|
|
|
+ Print(frame, plugin, PrintRequestType::kRegular, silent, std::move(settings));
|
2020-09-21 11:00:36 +03:00
|
|
|
|
2019-11-06 02:41:20 +03:00
|
|
|
if (!render_frame_gone_)
|
2020-10-16 04:30:41 +03:00
|
|
|
frame->DispatchAfterPrintEvent();
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1303,7 +1305,8 @@ void PrintRenderFrameHelper::PrintForSystemDialog() {
|
2020-10-16 04:30:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Print(frame, print_preview_context_.source_node(),
|
|
|
|
- PrintRequestType::kRegular);
|
|
|
|
+ PrintRequestType::kRegular, false,
|
|
|
|
+ base::DictionaryValue());
|
2019-11-06 02:41:20 +03:00
|
|
|
if (!render_frame_gone_)
|
2020-09-21 11:00:36 +03:00
|
|
|
print_preview_context_.DispatchAfterPrintEvent();
|
2018-10-13 04:57:04 +03:00
|
|
|
// WARNING: |this| may be gone at this point. Do not do any more work here and
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1350,6 +1353,8 @@ void PrintRenderFrameHelper::PrintPreview(base::Value settings) {
|
2021-07-26 19:02:16 +03:00
|
|
|
if (ipc_nesting_level_ > kAllowedIpcDepthForPrint)
|
2018-10-13 04:57:04 +03:00
|
|
|
return;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
+ blink::WebLocalFrame* frame = render_frame()->GetWebFrame();
|
|
|
|
+ print_preview_context_.InitWithFrame(frame);
|
|
|
|
print_preview_context_.OnPrintPreview();
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2020-06-22 20:35:10 +03:00
|
|
|
if (print_preview_context_.IsForArc()) {
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1886,7 +1891,8 @@ void PrintRenderFrameHelper::PrintNode(const blink::WebNode& node) {
|
2020-08-15 04:51:28 +03:00
|
|
|
return;
|
2018-11-09 06:42:34 +03:00
|
|
|
|
|
|
|
Print(duplicate_node.GetDocument().GetFrame(), duplicate_node,
|
2020-10-16 04:30:41 +03:00
|
|
|
- PrintRequestType::kRegular);
|
2020-09-21 11:00:36 +03:00
|
|
|
+ PrintRequestType::kRegular, false /* silent */,
|
2020-10-16 04:30:41 +03:00
|
|
|
+ base::DictionaryValue() /* new_settings */);
|
2018-11-09 06:42:34 +03:00
|
|
|
// Check if |this| is still valid.
|
2020-08-15 04:51:28 +03:00
|
|
|
if (!weak_this)
|
2018-11-09 06:42:34 +03:00
|
|
|
return;
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1901,7 +1907,9 @@ void PrintRenderFrameHelper::PrintNode(const blink::WebNode& node) {
|
2020-10-16 04:30:41 +03:00
|
|
|
|
|
|
|
void PrintRenderFrameHelper::Print(blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebNode& node,
|
|
|
|
- PrintRequestType print_request_type) {
|
|
|
|
+ PrintRequestType print_request_type,
|
|
|
|
+ bool silent,
|
|
|
|
+ base::Value settings) {
|
2018-10-13 04:57:04 +03:00
|
|
|
// If still not finished with earlier print request simply ignore.
|
|
|
|
if (prep_frame_view_)
|
2020-10-16 04:30:41 +03:00
|
|
|
return;
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1909,7 +1917,7 @@ void PrintRenderFrameHelper::Print(blink::WebLocalFrame* frame,
|
2019-02-27 00:35:27 +03:00
|
|
|
FrameReference frame_ref(frame);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2020-09-21 11:00:36 +03:00
|
|
|
uint32_t expected_page_count = 0;
|
2018-10-13 04:57:04 +03:00
|
|
|
- if (!CalculateNumberOfPages(frame, node, &expected_page_count)) {
|
2019-11-08 21:01:50 +03:00
|
|
|
+ if (!CalculateNumberOfPages(frame, node, &expected_page_count, base::Value::AsDictionaryValue(settings))) {
|
2018-10-13 04:57:04 +03:00
|
|
|
DidFinishPrinting(FAIL_PRINT_INIT);
|
|
|
|
return; // Failed to init print page settings.
|
|
|
|
}
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -1928,8 +1936,15 @@ void PrintRenderFrameHelper::Print(blink::WebLocalFrame* frame,
|
2020-09-21 11:00:36 +03:00
|
|
|
print_pages_params_->params->print_scaling_option;
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
auto self = weak_ptr_factory_.GetWeakPtr();
|
2021-01-13 02:31:23 +03:00
|
|
|
- mojom::PrintPagesParamsPtr print_settings = GetPrintSettingsFromUser(
|
|
|
|
+ mojom::PrintPagesParamsPtr print_settings;
|
|
|
|
+
|
|
|
|
+ if (silent) {
|
|
|
|
+ print_settings = mojom::PrintPagesParams::New();
|
2021-08-24 03:52:17 +03:00
|
|
|
+ print_settings->params = print_pages_params_->params->Clone();
|
2021-01-13 02:31:23 +03:00
|
|
|
+ } else {
|
|
|
|
+ print_settings = GetPrintSettingsFromUser(
|
|
|
|
frame_ref.GetFrame(), node, expected_page_count, print_request_type);
|
2020-09-21 11:00:36 +03:00
|
|
|
+ }
|
2018-10-13 04:57:04 +03:00
|
|
|
// Check if |this| is still valid.
|
|
|
|
if (!self)
|
|
|
|
return;
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -2177,36 +2192,51 @@ void PrintRenderFrameHelper::IPCProcessed() {
|
2020-10-16 04:30:41 +03:00
|
|
|
}
|
2018-10-13 04:57:04 +03:00
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
-bool PrintRenderFrameHelper::InitPrintSettings(bool fit_to_paper_size) {
|
2021-10-25 18:52:52 +03:00
|
|
|
- mojom::PrintPagesParams settings;
|
|
|
|
- settings.params = mojom::PrintParams::New();
|
|
|
|
- GetPrintManagerHost()->GetDefaultPrintSettings(&settings.params);
|
2018-10-13 04:57:04 +03:00
|
|
|
+bool PrintRenderFrameHelper::InitPrintSettings(
|
|
|
|
+ bool fit_to_paper_size,
|
2018-11-09 06:42:34 +03:00
|
|
|
+ const base::DictionaryValue& new_settings) {
|
2021-10-25 18:52:52 +03:00
|
|
|
+ mojom::PrintPagesParamsPtr settings;
|
|
|
|
+
|
|
|
|
+ if (new_settings.DictEmpty()) {
|
|
|
|
+ settings = mojom::PrintPagesParams::New();
|
|
|
|
+ settings->params = mojom::PrintParams::New();
|
|
|
|
+ GetPrintManagerHost()->GetDefaultPrintSettings(&settings->params);
|
|
|
|
+ } else {
|
|
|
|
+ bool canceled = false;
|
|
|
|
+ int cookie =
|
|
|
|
+ print_pages_params_ ? print_pages_params_->params->document_cookie : 0;
|
|
|
|
+ GetPrintManagerHost()->UpdatePrintSettings(cookie, new_settings.Clone(), &settings, &canceled);
|
|
|
|
+ if (canceled)
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
bool result = true;
|
|
|
|
- if (!PrintMsg_Print_Params_IsValid(*settings.params))
|
|
|
|
+ if (!PrintMsg_Print_Params_IsValid(*settings->params))
|
|
|
|
result = false;
|
|
|
|
|
|
|
|
// Reset to default values.
|
|
|
|
ignore_css_margins_ = false;
|
|
|
|
- settings.pages.clear();
|
|
|
|
+ settings->pages.clear();
|
|
|
|
|
|
|
|
- settings.params->print_scaling_option =
|
|
|
|
+ settings->params->print_scaling_option =
|
|
|
|
fit_to_paper_size ? mojom::PrintScalingOption::kFitToPrintableArea
|
|
|
|
: mojom::PrintScalingOption::kSourceSize;
|
|
|
|
|
|
|
|
- SetPrintPagesParams(settings);
|
|
|
|
+ SetPrintPagesParams(*settings);
|
2018-11-09 06:42:34 +03:00
|
|
|
return result;
|
|
|
|
}
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-11-09 06:42:34 +03:00
|
|
|
-bool PrintRenderFrameHelper::CalculateNumberOfPages(blink::WebLocalFrame* frame,
|
|
|
|
- const blink::WebNode& node,
|
2020-09-21 11:00:36 +03:00
|
|
|
- uint32_t* number_of_pages) {
|
2018-11-09 06:42:34 +03:00
|
|
|
+bool PrintRenderFrameHelper::CalculateNumberOfPages(
|
|
|
|
+ blink::WebLocalFrame* frame,
|
|
|
|
+ const blink::WebNode& node,
|
2020-09-21 11:00:36 +03:00
|
|
|
+ uint32_t* number_of_pages,
|
2018-11-09 06:42:34 +03:00
|
|
|
+ const base::DictionaryValue& settings) {
|
2018-10-13 04:57:04 +03:00
|
|
|
DCHECK(frame);
|
2019-01-16 21:07:52 +03:00
|
|
|
bool fit_to_paper_size = !IsPrintingNodeOrPdfFrame(frame, node);
|
2018-10-13 04:57:04 +03:00
|
|
|
- if (!InitPrintSettings(fit_to_paper_size)) {
|
2018-11-09 06:42:34 +03:00
|
|
|
+ if (!InitPrintSettings(fit_to_paper_size, settings)) {
|
2018-10-13 04:57:04 +03:00
|
|
|
notify_browser_of_print_failure_ = false;
|
2020-09-21 11:00:36 +03:00
|
|
|
GetPrintManagerHost()->ShowInvalidPrinterSettingsError();
|
2018-10-13 04:57:04 +03:00
|
|
|
return false;
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -2579,18 +2609,7 @@ void PrintRenderFrameHelper::RequestPrintPreview(PrintPreviewRequestType type) {
|
2021-02-09 23:16:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool PrintRenderFrameHelper::CheckForCancel() {
|
|
|
|
- const mojom::PrintParams& print_params = *print_pages_params_->params;
|
|
|
|
- bool cancel = false;
|
|
|
|
-
|
|
|
|
- if (!GetPrintManagerHost()->CheckForCancel(print_params.preview_ui_id,
|
|
|
|
- print_params.preview_request_id,
|
|
|
|
- &cancel)) {
|
|
|
|
- cancel = true;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (cancel)
|
|
|
|
- notify_browser_of_print_failure_ = false;
|
|
|
|
- return cancel;
|
|
|
|
+ return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PrintRenderFrameHelper::PreviewPageRendered(
|
2018-10-13 04:57:04 +03:00
|
|
|
diff --git a/components/printing/renderer/print_render_frame_helper.h b/components/printing/renderer/print_render_frame_helper.h
|
2021-07-26 19:02:16 +03:00
|
|
|
index 90236920457c931c86426049c6cbc30b592b597f..353178863eba37b9112e784ffa4b3519076e91b9 100644
|
2018-10-13 04:57:04 +03:00
|
|
|
--- a/components/printing/renderer/print_render_frame_helper.h
|
|
|
|
+++ b/components/printing/renderer/print_render_frame_helper.h
|
2021-07-26 19:02:16 +03:00
|
|
|
@@ -256,7 +256,7 @@ class PrintRenderFrameHelper
|
2019-11-06 02:41:20 +03:00
|
|
|
mojo::PendingAssociatedReceiver<mojom::PrintRenderFrame> receiver);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2019-11-06 02:41:20 +03:00
|
|
|
// printing::mojom::PrintRenderFrame:
|
|
|
|
- void PrintRequestedPages() override;
|
2019-11-08 21:01:50 +03:00
|
|
|
+ void PrintRequestedPages(bool silent, base::Value settings) override;
|
2018-10-13 04:57:04 +03:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
2021-05-14 04:21:36 +03:00
|
|
|
void PrintForSystemDialog() override;
|
2020-05-26 23:06:26 +03:00
|
|
|
void SetPrintPreviewUI(
|
2021-07-26 19:02:16 +03:00
|
|
|
@@ -323,7 +323,9 @@ class PrintRenderFrameHelper
|
2020-10-16 04:30:41 +03:00
|
|
|
// WARNING: |this| may be gone after this method returns.
|
2018-10-13 04:57:04 +03:00
|
|
|
void Print(blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebNode& node,
|
2020-10-16 04:30:41 +03:00
|
|
|
- PrintRequestType print_request_type);
|
|
|
|
+ PrintRequestType print_request_type,
|
2018-11-09 06:42:34 +03:00
|
|
|
+ bool silent,
|
2020-10-16 04:30:41 +03:00
|
|
|
+ base::Value settings);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
// Notification when printing is done - signal tear-down/free resources.
|
2020-10-16 04:30:41 +03:00
|
|
|
void DidFinishPrinting(PrintingResult result);
|
2021-07-26 19:02:16 +03:00
|
|
|
@@ -332,12 +334,14 @@ class PrintRenderFrameHelper
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03: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 06:42:34 +03:00
|
|
|
+ const base::DictionaryValue& settings);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
// Calculate number of pages in source document.
|
2018-11-09 06:42:34 +03:00
|
|
|
bool CalculateNumberOfPages(blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebNode& node,
|
2020-09-21 11:00:36 +03:00
|
|
|
- uint32_t* number_of_pages);
|
|
|
|
+ uint32_t* number_of_pages,
|
2018-11-09 06:42:34 +03:00
|
|
|
+ const base::DictionaryValue& settings);
|
2018-10-24 21:24:11 +03:00
|
|
|
|
2018-10-13 04:57:04 +03:00
|
|
|
#if BUILDFLAG(ENABLE_PRINT_PREVIEW)
|
|
|
|
// Set options for print preset from source PDF document.
|
2019-08-07 17:47:24 +03:00
|
|
|
diff --git a/printing/printing_context.cc b/printing/printing_context.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
index f8f0f4bdfbb8db883f883f62f9d6e4b987d7b113..c2505f5e0049dc7ee8783056538ca4c2d0968744 100644
|
2019-08-07 17:47:24 +03:00
|
|
|
--- a/printing/printing_context.cc
|
|
|
|
+++ b/printing/printing_context.cc
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -120,7 +120,6 @@ mojom::ResultCode PrintingContext::UsePdfSettings() {
|
2019-08-07 17:47:24 +03:00
|
|
|
|
2021-10-21 21:51:36 +03:00
|
|
|
mojom::ResultCode PrintingContext::UpdatePrintSettings(
|
2019-08-07 17:47:24 +03:00
|
|
|
base::Value job_settings) {
|
|
|
|
- ResetSettings();
|
2020-09-21 11:00:36 +03:00
|
|
|
{
|
|
|
|
std::unique_ptr<PrintSettings> settings =
|
|
|
|
PrintSettingsFromJobSettings(job_settings);
|
2019-08-07 17:47:24 +03:00
|
|
|
diff --git a/printing/printing_context.h b/printing/printing_context.h
|
2022-01-11 01:31:39 +03:00
|
|
|
index 7d937e7e3f19df351d410185fc4dc3b7c8937f2e..e87170e6957733f06bcc296bcca3fc331557ed46 100644
|
2019-08-07 17:47:24 +03:00
|
|
|
--- a/printing/printing_context.h
|
|
|
|
+++ b/printing/printing_context.h
|
2022-01-11 01:31:39 +03:00
|
|
|
@@ -175,6 +175,9 @@ class COMPONENT_EXPORT(PRINTING) PrintingContext {
|
2019-08-07 17:47:24 +03:00
|
|
|
|
2022-01-11 01:31:39 +03:00
|
|
|
std::unique_ptr<PrintSettings> TakeAndResetSettings();
|
2019-08-07 17:47:24 +03:00
|
|
|
|
2021-09-01 22:55:07 +03:00
|
|
|
+ // Reinitializes the settings for object reuse.
|
|
|
|
+ void ResetSettings();
|
2019-08-07 17:47:24 +03:00
|
|
|
+
|
2022-01-11 01:31:39 +03:00
|
|
|
int job_id() const { return job_id_; }
|
2021-09-01 22:55:07 +03:00
|
|
|
|
2022-01-11 01:31:39 +03:00
|
|
|
protected:
|
|
|
|
@@ -185,9 +188,6 @@ class COMPONENT_EXPORT(PRINTING) PrintingContext {
|
|
|
|
static std::unique_ptr<PrintingContext> CreateImpl(Delegate* delegate,
|
|
|
|
bool skip_system_calls);
|
2021-09-01 22:55:07 +03:00
|
|
|
|
|
|
|
- // Reinitializes the settings for object reuse.
|
|
|
|
- void ResetSettings();
|
|
|
|
-
|
2022-01-11 01:31:39 +03:00
|
|
|
// Determine if system calls should be skipped by this instance.
|
|
|
|
bool skip_system_calls() const {
|
|
|
|
#if BUILDFLAG(ENABLE_OOP_PRINTING)
|