| Index: net/base/sdch_manager.cc
|
| diff --git a/net/base/sdch_manager.cc b/net/base/sdch_manager.cc
|
| index 435977237d83d4856008b9c442bf3946f3c36091..7f8245cc917e3507cef3b9bae14fad32233aa06f 100644
|
| --- a/net/base/sdch_manager.cc
|
| +++ b/net/base/sdch_manager.cc
|
| @@ -382,7 +382,7 @@ SdchProblemCode SdchManager::AddSdchDictionary(
|
| expiration = base::Time::Now() + base::TimeDelta::FromSeconds(seconds);
|
| } else if (name == "port") {
|
| int port;
|
| - if (ParseNonNegativeDecimalInt(value, &port))
|
| + if (ParseInt32(value, ParseIntFormat::NON_NEGATIVE, &port))
|
| ports.insert(port);
|
| }
|
| }
|
|
|