Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2673)

Unified Diff: base/base_paths_mac.mm

Issue 9316077: Enable audio/video tag in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add comment; PathServiceTest.Get test still fails on mac Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « base/base_paths_android.cc ('k') | base/base_paths_posix.cc » ('j') | content/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698