Commit f6e8cd8a authored by Stephen Nusko's avatar Stephen Nusko Committed by Commit Bot

Fix janky_time metric by remove extra brackets.

Somehow I missed this and added extra brackets. This fixes the syntax issue.

Change-Id: I364267b21fa01168cbeb0f63d4270a4b97794d0c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2187173Reviewed-by: default avatarStephen Nusko <nuskos@chromium.org>
Reviewed-by: default avatarMikhail Khokhlov <khokhlov@google.com>
Commit-Queue: Stephen Nusko <nuskos@chromium.org>
Auto-Submit: Stephen Nusko <nuskos@chromium.org>
Cr-Commit-Position: refs/heads/master@{#766454}
parent b4372aa1
...@@ -217,7 +217,7 @@ CREATE TABLE ScrollJanksMaybeNull AS ...@@ -217,7 +217,7 @@ CREATE TABLE ScrollJanksMaybeNull AS
currGestureScrollId != prevGestureScrollId OR currGestureScrollId != prevGestureScrollId OR
prevTs IS NULL OR prevTs IS NULL OR
prevTs < currScrollBeginTs OR prevTs < currScrollBeginTs OR
prevTs > currScrollEndTs)) prevTs > currScrollEndTs
THEN THEN
0 ELSE 0 ELSE
currScrollFramesExact > prevScrollFramesExact + 0.5 currScrollFramesExact > prevScrollFramesExact + 0.5
......
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