005101424a
Co-authored-by: Charles Kerr <charles@charleskerr.com>
53 lines
2.4 KiB
Diff
53 lines
2.4 KiB
Diff
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
|
|
index 67a7140453728a685ad8fca283a1465ddc4a8a51..1b7bed03e5c3231fdd73aa369a598db5a883bfec 100644
|
|
--- a/chrome/browser/pdf/pdf_extension_util.cc
|
|
+++ b/chrome/browser/pdf/pdf_extension_util.cc
|
|
@@ -10,8 +10,7 @@
|
|
#include "build/chromeos_buildflags.h"
|
|
#include "chrome/browser/browser_process.h"
|
|
#include "chrome/common/chrome_content_client.h"
|
|
-#include "chrome/grit/browser_resources.h"
|
|
-#include "chrome/grit/generated_resources.h"
|
|
+#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
|
|
index 2b73b110049b5e8d28b52656bbd2423e18ba07a0..8fd868b39d64c74aa189b8ca3e24c8537d91b1ba 100644
|
|
--- a/chrome/browser/printing/printing_service.cc
|
|
+++ b/chrome/browser/printing/printing_service.cc
|
|
@@ -6,7 +6,7 @@
|
|
|
|
#include "base/no_destructor.h"
|
|
#include "chrome/browser/service_sandbox_type.h"
|
|
-#include "chrome/grit/generated_resources.h"
|
|
+#include "electron/grit/electron_resources.h"
|
|
#include "content/public/browser/service_process_host.h"
|
|
|
|
const mojo::Remote<printing::mojom::PrintingService>& GetPrintingService() {
|
|
diff --git a/chrome/browser/win/icon_reader_service.cc b/chrome/browser/win/icon_reader_service.cc
|
|
index 721e1a863cc6925908f8343002df056f2373bf0b..10b2a95162541a8ff4d010c7be864f3f41dae378 100644
|
|
--- a/chrome/browser/win/icon_reader_service.cc
|
|
+++ b/chrome/browser/win/icon_reader_service.cc
|
|
@@ -5,7 +5,7 @@
|
|
#include "chrome/browser/win/icon_reader_service.h"
|
|
|
|
#include "chrome/browser/service_sandbox_type.h"
|
|
-#include "chrome/grit/generated_resources.h"
|
|
+#include "electron/grit/electron_resources.h"
|
|
#include "content/public/browser/service_process_host.h"
|
|
|
|
mojo::Remote<chrome::mojom::UtilReadIcon> LaunchIconReaderInstance() {
|