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

Unified Diff: base/base_paths_win.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_win.cc
diff --git a/base/base_paths_win.cc b/base/base_paths_win.cc
index eab412a1af413e62b96ea9f0f880ba64b4323006..4d46ed9e9f99666529461690dedbf4f4b3ace8b5 100644
--- a/base/base_paths_win.cc
+++ b/base/base_paths_win.cc
@@ -119,6 +119,11 @@ bool PathProviderWin(int key, FilePath* result) {
cur = executableDir.DirName().DirName();
break;
}
+ case base::DIR_MEDIA_LIBS: {
+ if (!PathService::Get(base::DIR_MODULE, result))
+ return false;
+ return true;
+ }
default:
return false;
}

Powered by Google App Engine
This is Rietveld 408576698