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

Unified Diff: third_party/widevine/cdm/widevine_cdm_common.h

Issue 2048523002: Fix base::GetNativeLibraryName() for Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@native_lib_clean
Patch Set: rebase Created 4 years, 6 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
« no previous file with comments | « net/udp/udp_socket_posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/widevine/cdm/widevine_cdm_common.h
diff --git a/third_party/widevine/cdm/widevine_cdm_common.h b/third_party/widevine/cdm/widevine_cdm_common.h
index 0dafb1e2b26abce7cdef8988e0ce429e05f8361f..e0344947278d308ff7fcd29aa3420a3019e494e3 100644
--- a/third_party/widevine/cdm/widevine_cdm_common.h
+++ b/third_party/widevine/cdm/widevine_cdm_common.h
@@ -33,15 +33,8 @@ const char kWidevineCdmPluginMimeType[] = "application/x-ppapi-widevine-cdm";
const char kWidevineCdmPluginMimeTypeDescription[] =
"Widevine Content Decryption Module";
-// File name of the CDM on different platforms.
-const char kWidevineCdmFileName[] =
-#if defined(OS_MACOSX)
- "libwidevinecdm.dylib";
-#elif defined(OS_WIN)
- "widevinecdm.dll";
-#else // OS_LINUX, etc.
- "libwidevinecdm.so";
-#endif
+// Name of the CDM library.
+const char kWidevineCdmLibraryName[] = "widevinecdm";
// File name of the adapter on different platforms.
const char kWidevineCdmAdapterFileName[] =
« no previous file with comments | « net/udp/udp_socket_posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698