Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/commands/lib/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ const start = (passthroughArgs, buildConfig = config.defaultBuildConfig, options
let user_data_dir
if (options.user_data_dir_name) {
if (process.platform === 'darwin') {
user_data_dir = path.join(process.env.HOME, 'Library', 'Application\\ Support', 'BraveSoftware', options.user_data_dir_name)
user_data_dir = path.join(process.env.HOME, 'Library', 'Application\\ Support', 'PingSoftware', options.user_data_dir_name)
} else if (process.platform === 'win32') {
user_data_dir = path.join(process.env.LocalAppData, 'BraveSoftware', options.user_data_dir_name)
user_data_dir = path.join(process.env.LocalAppData, 'PingSoftware', options.user_data_dir_name)
} else {
user_data_dir = path.join(process.env.HOME, '.config', 'BraveSoftware', options.user_data_dir_name)
user_data_dir = path.join(process.env.HOME, '.config', 'PingSoftware', options.user_data_dir_name)
}
braveArgs.push('--user-data-dir=' + user_data_dir);
}
Expand Down
2 changes: 1 addition & 1 deletion build/config.gni
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if (is_win) {
brave_product_dir_name_suffix = "-Development"
}
brave_product_dir_name =
"BraveSoftware/Brave-Browser$brave_product_dir_name_suffix"
"PingSoftware/Brave-Browser$brave_product_dir_name_suffix"

if (base_sparkle_update_url == "") {
base_sparkle_update_url =
Expand Down
2 changes: 1 addition & 1 deletion build/mac/create_postinstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main():
'KSProductID': 'CFBundleIdentifier',
'KSVersion': 'CFBundleShortVersionString',
'/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/'
'Contents/MacOS/ksadmin': '/Library/Application Support/BraveSoftware'
'Contents/MacOS/ksadmin': '/Library/Application Support/PingSoftware'
'/BraveUpdater/Current/BraveUpdater.app/'
'Contents/Helpers/BraveSoftwareUpdate.bundle/'
'Contents/Helpers/ksadmin'
Expand Down
2 changes: 1 addition & 1 deletion build/mac/pkg-scripts/postinstall
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi

appNameNoDash=$(echo $appName | sed "s/-/ /g")
installationAppPath="$installationPath/${appNameNoDash}.app"
userDataDir="$HOME/Library/Application Support/BraveSoftware"
userDataDir="$HOME/Library/Application Support/PingSoftware"
appDataDir="$userDataDir/${appName}"
promoCodePath="$appDataDir/promoCode"

Expand Down
2 changes: 1 addition & 1 deletion chromium_src/chrome/common/chrome_paths_linux.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bool GetDefaultUserDataDirectory(base::FilePath* result) {
std::string data_dir_suffix;
brave::GetChannelImpl(nullptr, &data_dir_suffix);

*result = config_dir.Append("BraveSoftware/Brave-Browser" + data_dir_suffix);
*result = config_dir.Append("PingSoftware/Brave-Browser" + data_dir_suffix);
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace install_static {

const wchar_t kCompanyPathName[] = L"BraveSoftware";
const wchar_t kCompanyPathName[] = L"PingSoftware";

#if defined(OFFICIAL_BUILD)
const wchar_t kProductPathName[] = L"Brave-Browser";
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/components/browser_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def _GetWinInstallPath(self) -> str:
if self.channel is not None:
app_name += '-' + self.channel
return os.path.join(os.path.expanduser('~'), 'AppData', 'Local',
'BraveSoftware', app_name, 'Application')
'PingSoftware', app_name, 'Application')

def DownloadBrowserBinary(self, url: Optional[str], version: BraveVersion,
out_dir: str, common_options: CommonOptions) -> str:
Expand Down
Loading