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

Unified Diff: base/base_paths_android.cc

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_android.cc
diff --git a/base/base_paths_android.cc b/base/base_paths_android.cc
index 9d04b764df03b667481518c0b83e2e3bb542b8df..a2df5a362299ae11c3fb1e885c48352f9adbda5f 100644
--- a/base/base_paths_android.cc
+++ b/base/base_paths_android.cc
@@ -52,6 +52,10 @@ bool PathProviderAndroid(int key, FilePath* result) {
case base::DIR_ANDROID_APP_DATA:
*result = FilePath(base::android::GetDataDirectory());
return true;
+ case base::DIR_MEDIA_LIBS:
+ if (!PathService::Get(base::DIR_MODULE, result))
+ return false;
+ return true;
default:
// Note: the path system expects this function to override the default
// behavior. So no need to log an error if we don't support a given
« no previous file with comments | « base/base_paths.h ('k') | base/base_paths_mac.mm » ('j') | base/base_paths_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698