| Index: media/base/mime_util.cc
 | 
| diff --git a/media/base/mime_util.cc b/media/base/mime_util.cc
 | 
| index 030a4ee1a646a08926a5b6e1adb4c5dd00418301..83eef2092a2cca6accc8c6aa80bf465a942262d3 100644
 | 
| --- a/media/base/mime_util.cc
 | 
| +++ b/media/base/mime_util.cc
 | 
| @@ -539,8 +539,8 @@ static bool ParseH264CodecID(const std::string& codec_id,
 | 
|                               bool* is_ambiguous) {
 | 
|    // Make sure we have avc1.xxxxxx or avc3.xxxxxx
 | 
|    if (codec_id.size() != 11 ||
 | 
| -      (!StartsWithASCII(codec_id, "avc1.", true) &&
 | 
| -       !StartsWithASCII(codec_id, "avc3.", true))) {
 | 
| +      (!base::StartsWithASCII(codec_id, "avc1.", true) &&
 | 
| +       !base::StartsWithASCII(codec_id, "avc3.", true))) {
 | 
|      return false;
 | 
|    }
 | 
|  
 | 
| 
 |