| Index: content/renderer/media/webcontentdecryptionmodulesession_impl.cc
|
| diff --git a/content/renderer/media/webcontentdecryptionmodulesession_impl.cc b/content/renderer/media/webcontentdecryptionmodulesession_impl.cc
|
| index 14fa798f22333ebfdb745c6dad6b1351507bf640..76935ae169aba62e45220c7f778ed64ea586a7f5 100644
|
| --- a/content/renderer/media/webcontentdecryptionmodulesession_impl.cc
|
| +++ b/content/renderer/media/webcontentdecryptionmodulesession_impl.cc
|
| @@ -36,7 +36,7 @@ void WebContentDecryptionModuleSessionImpl::initializeNewSession(
|
| const uint8* init_data, size_t init_data_length) {
|
| // TODO(ddorwin): Guard against this in supported types check and remove this.
|
| // Chromium only supports ASCII MIME types.
|
| - if (!IsStringASCII(mime_type)) {
|
| + if (!base::IsStringASCII(mime_type)) {
|
| NOTREACHED();
|
| OnSessionError(media::MediaKeys::kUnknownError, 0);
|
| return;
|
|
|