2020-09-28 02:00:05 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Thu, 24 Sep 2020 11:10:41 -0700
|
|
|
|
Subject: fix: use electron generated resources
|
|
|
|
|
|
|
|
This patch fixes a few instances where we need to use Electron generated
|
|
|
|
resources for IDS strings, or the IDs will be wrong and cause DCHECKS
|
|
|
|
as they will loaded as empty strings.
|
|
|
|
|
|
|
|
* IDS_UTILITY_PROCESS_UTILITY_WIN_NAME on Windows
|
|
|
|
* IDR_PDF_MANIFEST on Linux
|
|
|
|
* IDS_UTILITY_PROCESS_PRINTING_SERVICE_NAME on Windows
|
|
|
|
|
|
|
|
diff --git a/chrome/browser/pdf/pdf_extension_util.cc b/chrome/browser/pdf/pdf_extension_util.cc
|
2021-07-06 12:17:13 +00:00
|
|
|
index f72431f5bc7ba82316cf318f7845e7523c366d92..5133f3cd28c0d630a039118eb91c6c37ee202f3e 100644
|
2020-09-28 02:00:05 +00:00
|
|
|
--- a/chrome/browser/pdf/pdf_extension_util.cc
|
|
|
|
+++ b/chrome/browser/pdf/pdf_extension_util.cc
|
2021-07-06 12:17:13 +00:00
|
|
|
@@ -11,8 +11,7 @@
|
2020-12-22 22:14:44 +00:00
|
|
|
#include "build/chromeos_buildflags.h"
|
2020-09-28 02:00:05 +00:00
|
|
|
#include "chrome/browser/browser_process.h"
|
|
|
|
#include "chrome/common/chrome_content_client.h"
|
|
|
|
-#include "chrome/grit/browser_resources.h"
|
2020-10-16 01:30:41 +00:00
|
|
|
-#include "chrome/grit/generated_resources.h"
|
2020-09-28 02:00:05 +00:00
|
|
|
+#include "electron/grit/electron_resources.h"
|
|
|
|
#include "components/strings/grit/components_strings.h"
|
|
|
|
#include "components/zoom/page_zoom_constants.h"
|
|
|
|
#include "pdf/pdf_features.h"
|
|
|
|
diff --git a/chrome/browser/printing/printing_service.cc b/chrome/browser/printing/printing_service.cc
|
2021-10-21 18:51:36 +00:00
|
|
|
index ec70ac13f96a0085747ecc3f275fb392d3dcca42..6b470dad30760ee709e702e94c19eaeb3099442a 100644
|
2020-09-28 02:00:05 +00:00
|
|
|
--- a/chrome/browser/printing/printing_service.cc
|
|
|
|
+++ b/chrome/browser/printing/printing_service.cc
|
2021-09-01 19:55:07 +00:00
|
|
|
@@ -5,7 +5,7 @@
|
|
|
|
#include "chrome/browser/printing/printing_service.h"
|
2020-09-28 02:00:05 +00:00
|
|
|
|
|
|
|
#include "base/no_destructor.h"
|
|
|
|
-#include "chrome/grit/generated_resources.h"
|
|
|
|
+#include "electron/grit/electron_resources.h"
|
2021-09-01 19:55:07 +00:00
|
|
|
#include "chrome/services/printing/public/mojom/printing_service.mojom.h"
|
2020-09-28 02:00:05 +00:00
|
|
|
#include "content/public/browser/service_process_host.h"
|
|
|
|
|
|
|
|
diff --git a/chrome/browser/win/icon_reader_service.cc b/chrome/browser/win/icon_reader_service.cc
|
2021-09-01 19:55:07 +00:00
|
|
|
index d5497a7e26cdb66c7c074bc509e2bfec7d7875cd..62d2f555253eef903bd04ff1a0ad37d1470309e0 100644
|
2020-09-28 02:00:05 +00:00
|
|
|
--- a/chrome/browser/win/icon_reader_service.cc
|
|
|
|
+++ b/chrome/browser/win/icon_reader_service.cc
|
2021-09-01 19:55:07 +00:00
|
|
|
@@ -4,7 +4,7 @@
|
|
|
|
|
2020-09-28 02:00:05 +00:00
|
|
|
#include "chrome/browser/win/icon_reader_service.h"
|
|
|
|
|
|
|
|
-#include "chrome/grit/generated_resources.h"
|
|
|
|
+#include "electron/grit/electron_resources.h"
|
2021-09-01 19:55:07 +00:00
|
|
|
#include "chrome/services/util_win/public/mojom/util_read_icon.mojom.h"
|
2020-09-28 02:00:05 +00:00
|
|
|
#include "content/public/browser/service_process_host.h"
|
|
|
|
|