Index: content/renderer/media/webcontentdecryptionmodule_impl.cc |
diff --git a/content/renderer/media/webcontentdecryptionmodule_impl.cc b/content/renderer/media/webcontentdecryptionmodule_impl.cc |
index 7b2131b6354349ea5dfa8ec1a2a012d3e0f05bb0..8a4cf47fa6650baf0efbb09ba85c7cdcd134d944 100644 |
--- a/content/renderer/media/webcontentdecryptionmodule_impl.cc |
+++ b/content/renderer/media/webcontentdecryptionmodule_impl.cc |
@@ -11,6 +11,7 @@ |
#include "base/bind.h" |
#include "base/logging.h" |
#include "base/strings/string_util.h" |
+#include "base/strings/utf_string_conversions.h" |
#include "content/renderer/media/cdm_session_adapter.h" |
#include "content/renderer/media/webcontentdecryptionmodulesession_impl.h" |
#include "media/base/media_keys.h" |
@@ -39,7 +40,7 @@ WebContentDecryptionModuleImpl* WebContentDecryptionModuleImpl::Create( |
base::Bind(&PepperCdmWrapperImpl::Create, |
static_cast<blink::WebFrame*>(NULL)), |
#endif |
- UTF16ToASCII(key_system))) { |
+ base::UTF16ToASCII(key_system))) { |
return NULL; |
} |