Commit cf4d11d6 authored by skyostil's avatar skyostil Committed by Commit bot

perf: Don't record first_gesture_scroll_update_latency in smoothness.tough_ad_cases

BUG=598332

Review-Url: https://codereview.chromium.org/2304703003
Cr-Commit-Position: refs/heads/master@{#416455}
parent 06aa20af
...@@ -459,6 +459,12 @@ class SmoothnessToughAdCases(_Smoothness): ...@@ -459,6 +459,12 @@ class SmoothnessToughAdCases(_Smoothness):
def ShouldDisable(cls, possible_browser): def ShouldDisable(cls, possible_browser):
return cls.IsSvelte(possible_browser) # http://crbug.com/555089 return cls.IsSvelte(possible_browser) # http://crbug.com/555089
@classmethod
def ValueCanBeAddedPredicate(cls, value, is_first_result):
del is_first_result # unused
# These pages don't scroll so it's not necessary to measure input latency.
return value.name != 'first_gesture_scroll_update_latency'
# http://crbug.com/522619 (mac/win) # http://crbug.com/522619 (mac/win)
@benchmark.Disabled('win', 'mac') @benchmark.Disabled('win', 'mac')
......
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