| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index e4a0865f26a33faaf123dbae43df30ba2f162112..7787cab375f85429c30650c40d234daa754374a8 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -204,7 +204,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)
|
|
|