Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1944)

Unified Diff: chrome/common/chrome_paths.cc

Issue 1001103002: Crashpad! (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sign crashpad_handler Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_dll_bundle.gypi ('k') | chrome/installer/mac/sign_app.sh.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_paths.cc
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index b1c80b61be1215808e646608a53da49977439bdb..3cee502a40ad27df49287838e07968794698d47c 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -231,7 +231,11 @@ bool PathProvider(int key, base::FilePath* result) {
if (!GetDefaultUserDataDirectory(&cur))
return false;
#endif
+#if defined(OS_MACOSX)
+ cur = cur.Append(FILE_PATH_LITERAL("Crashpad"));
+#else
cur = cur.Append(FILE_PATH_LITERAL("Crash Reports"));
+#endif
create_dir = true;
break;
#if defined(OS_WIN)
« no previous file with comments | « chrome/chrome_dll_bundle.gypi ('k') | chrome/installer/mac/sign_app.sh.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698