diff options
Diffstat (limited to 'chrome/common/chrome_paths.cc')
-rw-r--r-- | chrome/common/chrome_paths.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc index 35c01d1..1b3061f 100644 --- a/chrome/common/chrome_paths.cc +++ b/chrome/common/chrome_paths.cc @@ -195,6 +195,14 @@ bool PathProvider(int key, FilePath* result) { if (!GetInternalPluginsDirectory(&cur)) return false; break; + case chrome::DIR_MEDIA_LIBS: +#if defined(OS_MACOSX) + *result = base::mac::MainAppBundlePath(); + *result = result->Append("Libraries"); + return true; +#else + return PathService::Get(chrome::DIR_APP, result); +#endif case chrome::FILE_LOCAL_STATE: if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) return false; |