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

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

Issue 2233543002: Make first TouchStart and first TouchMove events on a flinging layer non-blocking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename Created 4 years, 4 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/event_with_latency_info.cc
diff --git a/content/common/input/event_with_latency_info.cc b/content/common/input/event_with_latency_info.cc
index a2b306b7eaaa71e6683cc6c23f287f498f6891a2..24ffd9ce3905b5a4fec4d1d1baa7bd2c1516d96d 100644
--- a/content/common/input/event_with_latency_info.cc
+++ b/content/common/input/event_with_latency_info.cc
@@ -50,7 +50,7 @@ WebInputEvent::DispatchType MergeDispatchTypes(
"Enum not ordered correctly");
static_assert(
WebInputEvent::DispatchType::ListenersNonBlockingPassive <
- WebInputEvent::DispatchType::ListenersForcedNonBlockingPassive,
+ WebInputEvent::DispatchType::ListenersForcedNonBlockingDueToFling,
"Enum not ordered correctly");
return static_cast<WebInputEvent::DispatchType>(
std::min(static_cast<int>(type_1), static_cast<int>(type_2)));

Powered by Google App Engine
This is Rietveld 408576698