| Index: Source/platform/ContentType.cpp | 
| diff --git a/Source/platform/ContentType.cpp b/Source/platform/ContentType.cpp | 
| index ac51a53fe69c7df87cfcfcd7651f9d096eae33a6..1b40aef752ab483c11c783738fd5bd0691db6691 100644 | 
| --- a/Source/platform/ContentType.cpp | 
| +++ b/Source/platform/ContentType.cpp | 
| @@ -84,7 +84,7 @@ Vector<String> ContentType::codecs() const | 
| return Vector<String>(); | 
|  | 
| Vector<String> codecs; | 
| -    codecsParameter.split(",", codecs); | 
| +    codecsParameter.split(',', codecs); | 
| for (size_t i = 0; i < codecs.size(); ++i) | 
| codecs[i] = codecs[i].simplifyWhiteSpace(); | 
|  | 
|  |