| Index: third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.cpp b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| index 58d1c02b59ac11e561f192c152f7c249a4c799f4..881250c9631281ad6a15f7e4583760e9c724445a 100644
|
| --- a/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| +++ b/third_party/WebKit/Source/web/WebInputEventConversion.cpp
|
| @@ -356,8 +356,8 @@ void PlatformKeyboardEventBuilder::setKeyType(EventType type)
|
| // According to the behavior of Webkit in Windows platform,
|
| // we need to convert KeyDown to RawKeydown and Char events
|
| // See WebKit/WebKit/Win/WebView.cpp
|
| - ASSERT(m_type == KeyDown);
|
| - ASSERT(type == RawKeyDown || type == Char);
|
| + DCHECK(m_type == KeyDown);
|
| + DCHECK(type == RawKeyDown || type == Char);
|
| m_type = type;
|
|
|
| if (type == RawKeyDown) {
|
|
|