Index: chrome/common/chrome_paths.cc |
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc |
index accbe55adfe823f68500e13bc11a36de8af5c2fb..f4e119db21536639646f55aaf0b4db586721d280 100644 |
--- a/chrome/common/chrome_paths.cc |
+++ b/chrome/common/chrome_paths.cc |
@@ -16,7 +16,6 @@ |
#include "build/build_config.h" |
#include "chrome/common/chrome_constants.h" |
#include "chrome/common/chrome_paths_internal.h" |
-#include "media/cdm/cdm_paths.h" |
#if defined(OS_ANDROID) |
#include "base/android/path_utils.h" |
@@ -369,7 +368,7 @@ |
case chrome::DIR_COMPONENT_WIDEVINE_CDM: |
if (!PathService::Get(chrome::DIR_USER_DATA, &cur)) |
return false; |
- cur = cur.AppendASCII(kWidevineCdmBaseDirectory); |
+ cur = cur.Append(FILE_PATH_LITERAL("WidevineCDM")); |
break; |
#endif // defined(WIDEVINE_CDM_IS_COMPONENT) |
// TODO(xhwang): FILE_WIDEVINE_CDM_ADAPTER has different meanings. |
@@ -378,8 +377,6 @@ |
case chrome::FILE_WIDEVINE_CDM_ADAPTER: |
if (!GetComponentDirectory(&cur)) |
return false; |
- cur = cur.Append( |
- media::GetPlatformSpecificDirectory(kWidevineCdmBaseDirectory)); |
cur = cur.AppendASCII(kWidevineCdmAdapterFileName); |
break; |
#endif // defined(WIDEVINE_CDM_AVAILABLE) && defined(ENABLE_PEPPER_CDMS) |