| 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)
|
|
|