forked from pool/ungoogled-chromium
* Security: The Storage, Service Worker, and Communication APIs are now partitioned in third-party contexts to prevent certain types of side-channel cross-site tracking * HTTPS: Automatically and optimistically upgrade all main-frame navigations to HTTPS, with fast fallback to HTTP. * CSS: accept multiple values of the display property * CSS: support boolean context style container queries * CSS: support scroll-driven animations * Increase the maximum size of a WebAssembly.Module() on the main thread to 8 MB * FedCM: Support credential management mediation requirements for auto re-authentication * Deprecate the document.domain setter * Deprecate mutation events * Security fixes (boo#1213462): CVE-2023-3727: Use after free in WebRTC CVE-2023-3728: Use after free in WebRTC CVE-2023-3730: Use after free in Tab Groups CVE-2023-3732: Out of bounds memory access in Mojo CVE-2023-3733: Inappropriate implementation in WebApp Installs CVE-2023-3734: Inappropriate implementation in Picture In Picture CVE-2023-3735: Inappropriate implementation in Web API Permission Prompts CVE-2023-3736: Inappropriate implementation in Custom Tabs CVE-2023-3737: Inappropriate implementation in Notifications CVE-2023-3738: Inappropriate implementation in Autofill CVE-2023-3740: Insufficient validation of untrusted input in Themes Various fixes from internal audits, fuzzing and other initiatives - drop chromium-113-typename.patch - add chromium-115-skia-include.patch OBS-URL: https://build.opensuse.org/package/show/network:chromium/ungoogled-chromium?expand=0&rev=33
17 lines
708 B
Diff
17 lines
708 B
Diff
Index: chromium-115.0.5790.32/chrome/browser/first_run/first_run_internal_linux.cc
|
|
===================================================================
|
|
--- chromium-115.0.5790.32.orig/chrome/browser/first_run/first_run_internal_linux.cc
|
|
+++ chromium-115.0.5790.32/chrome/browser/first_run/first_run_internal_linux.cc
|
|
@@ -21,10 +21,7 @@ bool IsOrganicFirstRun() {
|
|
base::FilePath InitialPrefsPath() {
|
|
// The standard location of the initial prefs is next to the chrome binary.
|
|
base::FilePath dir_exe;
|
|
- if (!base::PathService::Get(base::DIR_EXE, &dir_exe)) {
|
|
- return base::FilePath();
|
|
- }
|
|
-
|
|
+ dir_exe = base::FilePath("/etc/chromium");
|
|
return installer::InitialPreferences::Path(dir_exe);
|
|
}
|
|
|