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

Unified Diff: media/base/mime_util.cc

Issue 1200053004: Move more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « google_apis/gaia/oauth_request_signer.cc ('k') | media/blink/webcontentdecryptionmodulesession_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mime_util.cc
diff --git a/media/base/mime_util.cc b/media/base/mime_util.cc
index 9e670ef6d63079d17623917c9709d0cf6b2a0a35..535837c14743c66d17c863637a1a90058d53fae0 100644
--- a/media/base/mime_util.cc
+++ b/media/base/mime_util.cc
@@ -495,7 +495,7 @@ void MimeUtil::RemoveProprietaryMediaTypesAndCodecsForTests() {
// equal to the specified level."
static bool IsValidH264BaselineProfile(const std::string& profile_str) {
return (profile_str.size() == 4 && profile_str[0] == '4' &&
- profile_str[1] == '2' && IsHexDigit(profile_str[2]) &&
+ profile_str[1] == '2' && base::IsHexDigit(profile_str[2]) &&
profile_str[3] == '0');
}
« no previous file with comments | « google_apis/gaia/oauth_request_signer.cc ('k') | media/blink/webcontentdecryptionmodulesession_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698