Unverified Commit 07083a51 authored by liyuqian's avatar liyuqian Committed by GitHub

Manual roll the engine to land the timing API (#33989)

This will manually land https://github.com/flutter/engine/pull/8983 in
the framework.
parent 17d6f6a0
afb9d510c3bb0f1b97980434b41200a2d3491697
74975a4d17162f23bea92ac298d1b96c2995a529
......@@ -243,6 +243,13 @@ class TestWindow implements Window {
_window.onDrawFrame = callback;
}
@override
TimingsCallback get onReportTimings => _window.onReportTimings;
@override
set onReportTimings(TimingsCallback callback) {
_window.onReportTimings = callback;
}
@override
PointerDataPacketCallback get onPointerDataPacket => _window.onPointerDataPacket;
@override
......
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