--- ./chrome/common/chrome_paths_linux.cc +++ ./chrome/common/chrome_paths_linux.cc.new @@ -66,11 +66,7 @@ base::FilePath config_dir(GetXDGDirectory(env.get(), kXdgConfigHomeEnvVar, kDotConfigDir)); -#if defined(GOOGLE_CHROME_BUILD) - *result = config_dir.Append("google-chrome"); -#else - *result = config_dir.Append("chromium"); -#endif + *result = config_dir.Append("inox"); return true; } --- ./chrome/app/chromium_strings.grd +++ ./chrome/app/chromium_strings.grd.new @@ -137,17 +137,17 @@ Disconnecting $1someone@example.com will clear your history, bookmarks, settings, and other Chromium data stored on this device. Data stored in your Google Account will not be cleared and can be managed on <a target="_blank" href="$2">Google Dashboard</a>. - Chromium + Inox - Chromium + Inox - Chromium + Inox - Chromium is a web browser that runs webpages and applications with lightning speed. It's fast, stable, and easy to use. Browse the web more safely with malware and phishing protection built into Chromium. + Inox is a free, open, and libre browser modification of the Chromium code base, with privacy being enhanced in several key areas. Automatic transmission of partial queries, keywords, metrics to central services inhibited and only occurs with consent. In addition, all our builds are reproducible, and modifications are auditable, setting the project ahead of other secure browser providers. @@ -163,7 +163,7 @@ Chromium App Launcher - Chromium Binaries + Inox Binaries https://support.google.com/chrome/?p=ib_chromeframe @@ -182,7 +182,7 @@ sign in to Chromium - Task Manager - Chromium + Task Manager - Inox Help make Chromium better by sending crash reports and $1usage statistics to Google @@ -190,7 +190,7 @@ - $1Google - Chromium + $1Google - Inox @@ -682,7 +682,7 @@ - About &Chromium + About &Inox Update &Chromium @@ -690,7 +690,7 @@ - About &Chromium + About &Inox Update &Chromium @@ -707,7 +707,7 @@ - Chromium + Inox Chromium Helper --- a/chrome/test/chromedriver/chrome/chrome_finder.cc +++ b/chrome/test/chromedriver/chrome/chrome_finder.cc @@ -91,15 +91,12 @@ void GetApplicationDirs(std::vector* locations); bool FindChrome(base::FilePath* browser_exe) { base::FilePath browser_exes_array[] = { #if defined(OS_WIN) - base::FilePath(L"chrome.exe") + base::FilePath(L"inox.exe") #elif defined(OS_MACOSX) - base::FilePath("Google Chrome.app/Contents/MacOS/Google Chrome"), - base::FilePath("Chromium.app/Contents/MacOS/Chromium") + base::FilePath("Google Chrome.app/Contents/MacOS/Inox"), + base::FilePath("Inox.app/Contents/MacOS/Inox") #elif defined(OS_LINUX) - base::FilePath("google-chrome"), - base::FilePath("chrome"), - base::FilePath("chromium"), - base::FilePath("chromium-browser") + base::FilePath("inox"), #else // it will compile but won't work on other OSes base::FilePath()