| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index 1a2209bb3c8d11ee8399752777e785e58805bf79..51ff8f5fb19e94ac1529ccbf84ad868db026754b 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -74,8 +74,10 @@ bool PathProvider(int key, FilePath* result) {
|
| FilePath cur;
|
| switch (key) {
|
| case chrome::DIR_USER_DATA:
|
| - if (!GetDefaultUserDataDirectory(&cur))
|
| + if (!GetDefaultUserDataDirectory(&cur)) {
|
| + NOTREACHED();
|
| return false;
|
| + }
|
| create_dir = true;
|
| break;
|
| case chrome::DIR_USER_CACHE:
|
|
|