| Index: Source/core/platform/network/ParsedContentType.cpp
|
| diff --git a/Source/core/platform/network/ParsedContentType.cpp b/Source/core/platform/network/ParsedContentType.cpp
|
| index d8db86a8f3b8e6df430639c5b1ab9db6e42a696e..58ee9d40163d9681250e8d499c683144feaf7413 100644
|
| --- a/Source/core/platform/network/ParsedContentType.cpp
|
| +++ b/Source/core/platform/network/ParsedContentType.cpp
|
| @@ -163,7 +163,7 @@ bool parseContentType(const String& contentType, ReceiverType& receiver)
|
|
|
| // There should not be any quoted strings until we reach the parameters.
|
| size_t semiColonIndex = contentType.find(';', index);
|
| - if (semiColonIndex == notFound) {
|
| + if (semiColonIndex == kNotFound) {
|
| receiver.setContentType(SubstringRange(index, contentTypeLength - index));
|
| return true;
|
| }
|
|
|