| Index: third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| index 5d69b4e0ce3cdf38475de935e47474302e1c738c..552148601af95141689789c5abad6424a58606c4 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.h
|
| @@ -120,7 +120,7 @@ protected:
|
|
|
| void cacheSelection(int start, int end, TextFieldSelectionDirection direction)
|
| {
|
| - ASSERT(start >= 0);
|
| + DCHECK_GE(start, 0);
|
| m_cachedSelectionStart = start;
|
| m_cachedSelectionEnd = end;
|
| m_cachedSelectionDirection = direction;
|
|
|