Chromium Code Reviews| Index: base/base_paths_mac.mm |
| diff --git a/base/base_paths_mac.mm b/base/base_paths_mac.mm |
| index aed3ea8e3eb787de288e1c702fd120e752be91d8..b7dbb9b05a5580dcf0f1bf154c6b29b7672d66c5 100644 |
| --- a/base/base_paths_mac.mm |
| +++ b/base/base_paths_mac.mm |
| @@ -12,6 +12,7 @@ |
| #include "base/file_path.h" |
| #include "base/file_util.h" |
| #include "base/logging.h" |
| +#include "base/mac/bundle_locations.h" |
| #include "base/mac/foundation_util.h" |
| #include "base/path_service.h" |
| #include "base/string_util.h" |
| @@ -80,6 +81,11 @@ bool PathProviderMac(int key, FilePath* result) { |
| } |
| return true; |
| } |
| + case base::DIR_MEDIA_LIBS: { |
|
vrk (LEFT CHROMIUM)
2012/03/06 02:07:50
This is failing the base_unittests PathServiceTest
scherkus (not reviewing)
2012/03/06 02:19:00
my only guess would be that ReturnsValidPath() is
|
| + *result = base::mac::FrameworkBundlePath(); |
| + *result = result->Append("Libraries"); |
| + return true; |
| + } |
| default: |
| return false; |
| } |