diff options
Diffstat (limited to 'devel/electron37/files/patch-electron_shell_browser_browser__process__impl.h')
-rw-r--r-- | devel/electron37/files/patch-electron_shell_browser_browser__process__impl.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/electron37/files/patch-electron_shell_browser_browser__process__impl.h b/devel/electron37/files/patch-electron_shell_browser_browser__process__impl.h new file mode 100644 index 000000000000..dd5de96a6cb9 --- /dev/null +++ b/devel/electron37/files/patch-electron_shell_browser_browser__process__impl.h @@ -0,0 +1,29 @@ +--- electron/shell/browser/browser_process_impl.h.orig 2025-04-04 05:26:44 UTC ++++ electron/shell/browser/browser_process_impl.h +@@ -21,7 +21,7 @@ + #include "services/network/public/cpp/shared_url_loader_factory.h" + #include "shell/browser/net/system_network_context_manager.h" + +-#if BUILDFLAG(IS_LINUX) ++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) + #include "components/os_crypt/sync/key_storage_util_linux.h" + #endif + +@@ -60,7 +60,7 @@ class BrowserProcessImpl : public BrowserProcess { + const std::string& GetSystemLocale() const; + electron::ResolveProxyHelper* GetResolveProxyHelper(); + +-#if BUILDFLAG(IS_LINUX) ++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) + void SetLinuxStorageBackend(os_crypt::SelectedLinuxBackend selected_backend); + [[nodiscard]] const std::string& linux_storage_backend() const { + return selected_linux_storage_backend_; +@@ -151,7 +151,7 @@ class BrowserProcessImpl : public BrowserProcess { + std::unique_ptr<PrefService> local_state_; + std::string locale_; + std::string system_locale_; +-#if BUILDFLAG(IS_LINUX) ++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) + std::string selected_linux_storage_backend_; + #endif + embedder_support::OriginTrialsSettingsStorage origin_trials_settings_storage_; |