Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1013)

Unified Diff: content/common/input/input_event_stream_validator.cc

Issue 628763003: Support InputRouter recycling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/input/input_event_stream_validator.cc
diff --git a/content/common/input/input_event_stream_validator.cc b/content/common/input/input_event_stream_validator.cc
index 85ac42cb5cf8d6a4e4e0be6624249b9a2fe6f3d4..f8b6128b8247f7297a7f70e3267c5a1cda7fd753 100644
--- a/content/common/input/input_event_stream_validator.cc
+++ b/content/common/input/input_event_stream_validator.cc
@@ -27,7 +27,7 @@ void InputEventStreamValidator::Validate(const WebInputEvent& event) {
if (!enabled_)
return;
- DCHECK(ValidateImpl(event, &error_msg_)) << error_msg_;
+ CHECK(ValidateImpl(event, &error_msg_)) << error_msg_;
}
bool InputEventStreamValidator::ValidateImpl(const blink::WebInputEvent& event,

Powered by Google App Engine
This is Rietveld 408576698