| Index: net/cookies/cookie_util.cc
|
| diff --git a/net/cookies/cookie_util.cc b/net/cookies/cookie_util.cc
|
| index 9ad6eaa7d20eba3edb847fe4b1809bb7a18e9f08..2723363e2fb4e5271e21a826ced85402b7d90524 100644
|
| --- a/net/cookies/cookie_util.cc
|
| +++ b/net/cookies/cookie_util.cc
|
| @@ -118,7 +118,7 @@ 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) {
|
|
|