Fix "PointerEvent" flow end event (#8319)

"DispatchPointerDataPacket" should have been "PointerEvent".
This commit is contained in:
nathanrogersgoogle 2019-03-27 14:34:01 -07:00 committed by GitHub
parent 3a3f707d5a
commit 6bd697dd4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,7 +92,7 @@ void Animator::BeginFrame(fml::TimePoint frame_start_time,
TRACE_EVENT0("flutter", "Animator::BeginFrame");
while (!trace_flow_ids_.empty()) {
uint64_t trace_flow_id = trace_flow_ids_.front();
TRACE_FLOW_END("flutter", "DispatchPointerDataPacket", trace_flow_id);
TRACE_FLOW_END("flutter", "PointerEvent", trace_flow_id);
trace_flow_ids_.pop_front();
}