| Index: net/cookies/cookie_util.cc
|
| diff --git a/net/cookies/cookie_util.cc b/net/cookies/cookie_util.cc
|
| index 9ad6eaa7d20eba3edb847fe4b1809bb7a18e9f08..0853505ae88dc9c0b8b9e48dae7e07796ea03dcd 100644
|
| --- a/net/cookies/cookie_util.cc
|
| +++ b/net/cookies/cookie_util.cc
|
| @@ -118,14 +118,14 @@ base::Time ParseCookieTime(const std::string& time_string) {
|
| while (tokenizer.GetNext()) {
|
| const std::string token = tokenizer.token();
|
| DCHECK(!token.empty());
|
| - bool numerical = IsAsciiDigit(token[0]);
|
| + bool numerical = base::IsAsciiDigit(token[0]);
|
|
|
| // String field
|
| if (!numerical) {
|
| if (!found_month) {
|
| for (int i = 0; i < kMonthsLen; ++i) {
|
| // Match prefix, so we could match January, etc
|
| - if (base::strncasecmp(token.c_str(), kMonths[i], 3) == 0) {
|
| + if (strncasecmp(token.c_str(), kMonths[i], 3) == 0) {
|
| exploded.month = i + 1;
|
| found_month = true;
|
| break;
|
|
|