-
Notifications
You must be signed in to change notification settings - Fork 888
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from brave/data_folder_brave_browser
linux data folder is brave-browser now
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
diff --git a/chrome/common/chrome_paths_linux.cc b/chrome/common/chrome_paths_linux.cc | ||
index fc47bd3f12418fdaed879e0b485bfc7cb572a6e8..9f02b6d08385a175354831a8037cb7be933de7df 100644 | ||
index fc47bd3f12418fdaed879e0b485bfc7cb572a6e8..b646812c6abafc22ffe62e06e46d818e15c80984 100644 | ||
--- a/chrome/common/chrome_paths_linux.cc | ||
+++ b/chrome/common/chrome_paths_linux.cc | ||
@@ -89,8 +89,10 @@ bool GetDefaultUserDataDirectory(base::FilePath* result) { | ||
|
||
#if defined(GOOGLE_CHROME_BUILD) | ||
*result = config_dir.Append("google-chrome" + GetChannelSuffixForDataDir()); | ||
+#elif defined(OFFICIAL_BUILD) | ||
+ *result = config_dir.Append("brave"); | ||
+ *result = config_dir.Append("brave-browser"); | ||
#else | ||
- *result = config_dir.Append("chromium"); | ||
+ *result = config_dir.Append("brave-development"); | ||
+ *result = config_dir.Append("brave-browser-development"); | ||
#endif | ||
return true; | ||
} |