Index: tools/perf/benchmarks/smoothness.py |
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py |
index c650764b7f4c7a69fbfc034b3178d9f7ab096b2d..168e862c2123fea125e0bdc077cde4d73fe3b28a 100644 |
--- a/tools/perf/benchmarks/smoothness.py |
+++ b/tools/perf/benchmarks/smoothness.py |
@@ -459,6 +459,12 @@ class SmoothnessToughAdCases(_Smoothness): |
def ShouldDisable(cls, possible_browser): |
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) |
@benchmark.Disabled('win', 'mac') |