| Index: chrome/common/chrome_paths.cc
|
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
|
| index f5f6bf9815622b6feb218ad00dde6a610eb58617..fe4d778f1645431c08f4adc953b80fdf967b84d0 100644
|
| --- a/chrome/common/chrome_paths.cc
|
| +++ b/chrome/common/chrome_paths.cc
|
| @@ -83,14 +83,14 @@ bool PathProvider(int key, FilePath* result) {
|
| case chrome::DIR_RESOURCES:
|
| if (!PathService::Get(chrome::DIR_APP, &cur))
|
| return false;
|
| - cur = cur.Append(FILE_PATH_LITERAL("Resources"));
|
| + cur = cur.Append(FILE_PATH_LITERAL("resources"));
|
| create_dir = true;
|
| break;
|
| case chrome::DIR_INSPECTOR:
|
| if (!PathService::Get(chrome::DIR_APP, &cur))
|
| return false;
|
| - cur = cur.Append(FILE_PATH_LITERAL("Resources"));
|
| - cur = cur.Append(FILE_PATH_LITERAL("Inspector"));
|
| + cur = cur.Append(FILE_PATH_LITERAL("resources"));
|
| + cur = cur.Append(FILE_PATH_LITERAL("inspector"));
|
| break;
|
| case chrome::DIR_THEMES:
|
| if (!PathService::Get(chrome::DIR_APP, &cur))
|
|
|