| Index: tools/perf/benchmarks/smoothness.py | 
| diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py | 
| index c1c090b89088b9a0bd5d85265cfa08c2d6accc0a..9e3200c317ce900a0802d74279995af765a11aa0 100644 | 
| --- a/tools/perf/benchmarks/smoothness.py | 
| +++ b/tools/perf/benchmarks/smoothness.py | 
| @@ -265,3 +265,19 @@ class SmoothnessPathologicalMobileSites(benchmark.Benchmark): | 
| @classmethod | 
| def Name(cls): | 
| return 'smoothness.pathological_mobile_sites' | 
| + | 
| + | 
| +@benchmark.Enabled('android') | 
| +class SmoothnessSyncScrollPathologicalMobileSites(benchmark.Benchmark): | 
| +  """Measures task execution statistics while sync-scrolling pathological sites. | 
| +  """ | 
| +  tag = 'sync_scroll' | 
| +  test = smoothness.Smoothness | 
| +  page_set = page_sets.PathologicalMobileSitesPageSet | 
| + | 
| +  def CustomizeBrowserOptions(self, options): | 
| +    silk_flags.CustomizeBrowserOptionsForSyncScrolling(options) | 
| + | 
| +  @classmethod | 
| +  def Name(cls): | 
| +    return 'smoothness.sync_scroll.pathological_mobile_sites' | 
|  |