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; |
} |