2023-07-19 09:26:45 +00:00
|
|
|
Index: chromium-115.0.5790.32/chrome/browser/first_run/first_run_internal_linux.cc
|
2012-01-26 08:17:54 +00:00
|
|
|
===================================================================
|
2023-07-19 09:26:45 +00:00
|
|
|
--- 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() {
|
2020-10-14 11:15:31 +00:00
|
|
|
base::FilePath InitialPrefsPath() {
|
|
|
|
// The standard location of the initial prefs is next to the chrome binary.
|
2023-07-19 09:26:45 +00:00
|
|
|
base::FilePath dir_exe;
|
|
|
|
- if (!base::PathService::Get(base::DIR_EXE, &dir_exe)) {
|
2013-02-12 21:02:11 +00:00
|
|
|
- return base::FilePath();
|
2023-07-19 09:26:45 +00:00
|
|
|
- }
|
2021-05-27 19:17:30 +00:00
|
|
|
-
|
2023-07-19 09:26:45 +00:00
|
|
|
+ dir_exe = base::FilePath("/etc/chromium");
|
|
|
|
return installer::InitialPreferences::Path(dir_exe);
|
|
|
|
}
|
|
|
|
|