Commit 006ed0a1 authored by Navid Zolghadr's avatar Navid Zolghadr Committed by Commit Bot

Add back DCHECK for coalesced events id

Bug: 733774
Change-Id: Ic92388817ee3f1dc47a999564e7f16045ed9957f
Reviewed-on: https://chromium-review.googlesource.com/951707Reviewed-by: default avatarDave Tapuska <dtapuska@chromium.org>
Commit-Queue: Navid Zolghadr <nzolghadr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#541156}
parent caf69fed
......@@ -241,9 +241,7 @@ PointerEvent* PointerEventFactory::Create(
if (type == EventTypeNames::pointermove) {
HeapVector<Member<PointerEvent>> coalesced_pointer_events;
for (const auto& coalesced_event : coalesced_events) {
// TODO(crbug.com/733774): Disabled the DCHECK on the id of the events
// because it failed on some versions of Mac OS.
// DCHECK_EQ(web_pointer_event.id, coalesced_event.id);
DCHECK_EQ(web_pointer_event.id, coalesced_event.id);
DCHECK_EQ(web_pointer_event.GetType(), coalesced_event.GetType());
DCHECK_EQ(web_pointer_event.pointer_type, coalesced_event.pointer_type);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment