| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Commit-Queue | +2 |
Like the concise testing as well. LGTM
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
+dcheng@ for
third_party/blink/common/ features.cc
third_party/blink/public/common/ features.h
Thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
ScrollPredictor: Refine HasPrediction timeout logic behind flag.
This CL introduces a feature flag kScrollPredictorRefinedHasPrediction
that adjusts the timeout logic in ScrollPredictor::HasPrediction.
Original logic:
frame_time - last_prediction_update_timestamp_ > MaxResampleTime()
Refined logic:
prediction_time = frame_time + ResampleLatency(frame_interval);
prediction_time - last_prediction_update_timestamp_ > MaxResampleTime()
This accounts for the resample latency (which can be negative or positive)
when deciding whether to drop a synthetic prediction event.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |