| Index: third_party/WebKit/Source/core/layout/LayoutSearchField.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutSearchField.cpp b/third_party/WebKit/Source/core/layout/LayoutSearchField.cpp
|
| index 55ff56901ae214e882ea03b618c6d5d72144c060..2a2b1576c1dc470edc5a665b83f1d6ff2a892f82 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutSearchField.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutSearchField.cpp
|
| @@ -37,7 +37,7 @@ using namespace HTMLNames;
|
|
|
| LayoutSearchField::LayoutSearchField(HTMLInputElement* element)
|
| : LayoutTextControlSingleLine(element) {
|
| - ASSERT(element->type() == InputTypeNames::search);
|
| + DCHECK_EQ(element->type(), InputTypeNames::search);
|
| }
|
|
|
| LayoutSearchField::~LayoutSearchField() {}
|
|
|