42 lines
1.6 KiB
Diff
42 lines
1.6 KiB
Diff
diff --git chrome/browser/printing/print_job_worker.cc chrome/browser/printing/print_job_worker.cc
|
|
index c7a7f857a28d0..9479a7874ea3b 100644
|
|
--- chrome/browser/printing/print_job_worker.cc
|
|
+++ chrome/browser/printing/print_job_worker.cc
|
|
@@ -136,6 +136,7 @@ PrintJobWorker::PrintJobWorker(int render_process_id, int render_frame_id)
|
|
ShouldPrintingContextSkipSystemCalls())),
|
|
thread_("Printing_Worker") {
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
|
+ printing_context_->set_render_ids(render_process_id, render_frame_id);
|
|
}
|
|
|
|
PrintJobWorker::~PrintJobWorker() {
|
|
diff --git printing/printing_context.h printing/printing_context.h
|
|
index 3f36303105b79..aea7f788504d6 100644
|
|
--- printing/printing_context.h
|
|
+++ printing/printing_context.h
|
|
@@ -172,6 +172,13 @@ class COMPONENT_EXPORT(PRINTING) PrintingContext {
|
|
|
|
int job_id() const { return job_id_; }
|
|
|
|
+ void set_render_ids(int render_process_id, int render_frame_id) {
|
|
+ render_process_id_ = render_process_id;
|
|
+ render_frame_id_ = render_frame_id;
|
|
+ }
|
|
+ int render_process_id() const { return render_process_id_; }
|
|
+ int render_frame_id() const { return render_frame_id_; }
|
|
+
|
|
protected:
|
|
explicit PrintingContext(Delegate* delegate);
|
|
|
|
@@ -216,6 +223,10 @@ class COMPONENT_EXPORT(PRINTING) PrintingContext {
|
|
// The job id for the current job. The value is 0 if no jobs are active.
|
|
int job_id_;
|
|
|
|
+ // Routing IDs for the frame that owns this object.
|
|
+ int render_process_id_ = 0;
|
|
+ int render_frame_id_ = 0;
|
|
+
|
|
private:
|
|
#if BUILDFLAG(ENABLE_OOP_PRINTING)
|
|
// If this instance of PrintingContext should skip making any system calls
|