Skip to content

Commit

Permalink
Merge pull request #46 from brave/data_folder_brave_browser
Browse files Browse the repository at this point in the history
linux data folder is brave-browser now
  • Loading branch information
bbondy authored Feb 26, 2018
2 parents 0f36bf3 + 5e3dbc8 commit 85cb8f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions patches/chrome-common-chrome_paths_linux.cc.patch
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;
}

0 comments on commit 85cb8f2

Please sign in to comment.