| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index eccb65b2365d1237f6e8dfc56d4f71126196deea..aefcebc48e242137c81d8c39d3017842cf2cb801 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -186,6 +186,12 @@ bool PathProvider(int key, FilePath* result) {
|
| cur = cur.Append(FILE_PATH_LITERAL("Dictionaries"));
|
| create_dir = true;
|
| break;
|
| + case chrome::DIR_USER_DATA_TEMP:
|
| + if (!PathService::Get(chrome::DIR_USER_DATA, &cur))
|
| + return false;
|
| + cur = cur.Append(FILE_PATH_LITERAL("Temp"));
|
| + create_dir = true;
|
| + break;
|
| case chrome::FILE_LOCAL_STATE:
|
| if (!PathService::Get(chrome::DIR_USER_DATA, &cur))
|
| return false;
|
|
|