| Index: third_party/WebKit/Source/core/html/forms/DateInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/DateInputType.cpp b/third_party/WebKit/Source/core/html/forms/DateInputType.cpp
|
| index 71bbb9ba400c9232d9be695c47912738516fda66..7802824584ecd8abd2daf6d46812b7b4e6004115 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/DateInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/DateInputType.cpp
|
| @@ -76,14 +76,14 @@ StepRange DateInputType::createStepRange(AnyStepHandling anyStepHandling) const
|
|
|
| bool DateInputType::parseToDateComponentsInternal(const String& string, DateComponents* out) const
|
| {
|
| - ASSERT(out);
|
| + DCHECK(out);
|
| unsigned end;
|
| return out->parseDate(string, 0, end) && end == string.length();
|
| }
|
|
|
| bool DateInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
|
| {
|
| - ASSERT(date);
|
| + DCHECK(date);
|
| return date->setMillisecondsSinceEpochForDate(value);
|
| }
|
|
|
|
|