summaryrefslogtreecommitdiffstats
path: root/content/renderer/media/webcontentdecryptionmodule_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/renderer/media/webcontentdecryptionmodule_impl.cc')
-rw-r--r--content/renderer/media/webcontentdecryptionmodule_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/renderer/media/webcontentdecryptionmodule_impl.cc b/content/renderer/media/webcontentdecryptionmodule_impl.cc
index 8a4cf47..037b427 100644
--- a/content/renderer/media/webcontentdecryptionmodule_impl.cc
+++ b/content/renderer/media/webcontentdecryptionmodule_impl.cc
@@ -26,7 +26,7 @@ WebContentDecryptionModuleImpl* WebContentDecryptionModuleImpl::Create(
const base::string16& key_system) {
// TODO(ddorwin): Guard against this in supported types check and remove this.
// Chromium only supports ASCII key systems.
- if (!IsStringASCII(key_system)) {
+ if (!base::IsStringASCII(key_system)) {
NOTREACHED();
return NULL;
}