Chromium Code Reviews| Index: chrome/common/chrome_paths.cc |
| diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc |
| index 51aa0191d067a407eff0621949c2a734589ffb71..957c83fb4320548701b08a5e8440181f887b6288 100644 |
| --- a/chrome/common/chrome_paths.cc |
| +++ b/chrome/common/chrome_paths.cc |
| @@ -320,6 +320,14 @@ bool PathProvider(int key, FilePath* result) { |
| break; |
| } |
| #endif |
| +#if defined(OS_CHROMEOS) |
| + case chrome::DIR_USER_EXTERNAL_EXTENSIONS: { |
| + if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) |
|
Erik does not do reviews
2011/01/21 17:05:25
I haven't been following your conversations with D
Dmitry Polukhin
2011/01/21 17:46:19
It can't be some shared location because it needs
|
| + return false; |
| + cur = cur.Append(FILE_PATH_LITERAL("External Extensions")); |
| + break; |
| + } |
| +#endif |
| default: |
| return false; |
| } |