2023-01-30 12:43:54 -05:00
|
|
|
diff --git chrome/browser/printing/printer_query.cc chrome/browser/printing/printer_query.cc
|
|
|
|
index d01d616c3b1ea..580fa043bdc79 100644
|
|
|
|
--- chrome/browser/printing/printer_query.cc
|
|
|
|
+++ chrome/browser/printing/printer_query.cc
|
|
|
|
@@ -115,6 +115,7 @@ PrinterQuery::PrinterQuery(content::GlobalRenderFrameHostId rfh_id)
|
|
|
|
rfh_id_(rfh_id),
|
|
|
|
cookie_(PrintSettings::NewCookie()) {
|
2022-06-17 16:28:55 +03:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
2022-03-25 21:12:30 -04:00
|
|
|
+ printing_context_->set_render_ids(rfh_id.child_id, rfh_id.frame_routing_id);
|
2017-06-15 08:27:56 -07:00
|
|
|
}
|
|
|
|
|
2023-01-30 12:43:54 -05:00
|
|
|
PrinterQuery::~PrinterQuery() {
|
2017-06-15 08:27:56 -07:00
|
|
|
diff --git printing/printing_context.h printing/printing_context.h
|
2023-01-30 12:43:54 -05:00
|
|
|
index 7582c73418e74..f5b477c18c65a 100644
|
2017-06-15 08:27:56 -07:00
|
|
|
--- printing/printing_context.h
|
|
|
|
+++ printing/printing_context.h
|
2022-05-19 13:28:44 +03:00
|
|
|
@@ -173,6 +173,13 @@ class COMPONENT_EXPORT(PRINTING) PrintingContext {
|
2017-06-15 08:27:56 -07:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2022-07-25 13:49:32 -04:00
|
|
|
@@ -219,6 +226,10 @@ class COMPONENT_EXPORT(PRINTING) PrintingContext {
|
2017-06-15 08:27:56 -07:00
|
|
|
// The job id for the current job. The value is 0 if no jobs are active.
|
|
|
|
int job_id_;
|
2021-12-16 17:35:54 -05:00
|
|
|
|
2017-06-15 08:27:56 -07:00
|
|
|
+ // Routing IDs for the frame that owns this object.
|
|
|
|
+ int render_process_id_ = 0;
|
|
|
|
+ int render_frame_id_ = 0;
|
2021-12-16 17:35:54 -05:00
|
|
|
+
|
|
|
|
private:
|
|
|
|
#if BUILDFLAG(ENABLE_OOP_PRINTING)
|
|
|
|
// If this instance of PrintingContext should skip making any system calls
|