Chromium Code Reviews| Index: src/dateparser.cc |
| diff --git a/src/dateparser.cc b/src/dateparser.cc |
| index 71809114a045f248c479799cd5be39eb86675880..5db0391a67760ebc0e812090052fe211e9ed48a5 100644 |
| --- a/src/dateparser.cc |
| +++ b/src/dateparser.cc |
| @@ -177,7 +177,7 @@ int DateParser::ReadMilliseconds(DateToken token) { |
| // most significant digits. |
| int factor = 1; |
| do { |
| - ASSERT(factor <= 100000000); // factor won't overflow. |
| + DCHECK(factor <= 100000000); // factor won't overflow. |
| factor *= 10; |
| length--; |
| } while (length > 3); |