| Index: tools/perf/benchmarks/repaint.py
|
| diff --git a/tools/perf/benchmarks/repaint.py b/tools/perf/benchmarks/repaint.py
|
| index 52270c1c8b27a11bbb0ab8fc1ff1faddc4110d67..c47954ce1d19b9a248c65ea4e4c40aec6f4e98c0 100644
|
| --- a/tools/perf/benchmarks/repaint.py
|
| +++ b/tools/perf/benchmarks/repaint.py
|
| @@ -4,7 +4,6 @@
|
|
|
| from core import perf_benchmark
|
|
|
| -from benchmarks import silk_flags
|
| import ct_benchmarks_util
|
| from measurements import smoothness
|
|
|
| @@ -40,40 +39,6 @@ class _Repaint(perf_benchmark.PerfBenchmark):
|
| def CreatePageTest(self, options):
|
| return smoothness.Repaint()
|
|
|
| -# crbug.com/499320
|
| -#@benchmark.Enabled('android')
|
| -
|
| -
|
| -@benchmark.Disabled('all')
|
| -@benchmark.Owner(emails=['wkorman@chromium.org', 'vmpstr@chromium.org'])
|
| -class RepaintKeyMobileSites(_Repaint):
|
| - """Measures repaint performance on the key mobile sites.
|
| -
|
| - http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
|
| -
|
| - @classmethod
|
| - def Name(cls):
|
| - return 'repaint.key_mobile_sites_repaint'
|
| -
|
| -
|
| -# crbug.com/502179
|
| -@benchmark.Enabled('android')
|
| -@benchmark.Disabled('all')
|
| -@benchmark.Owner(emails=['wkorman@chromium.org', 'vmpstr@chromium.org'])
|
| -class RepaintGpuRasterizationKeyMobileSites(_Repaint):
|
| - """Measures repaint performance on the key mobile sites with forced GPU
|
| - rasterization.
|
| -
|
| - http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
|
| - tag = 'gpu_rasterization'
|
| -
|
| - def SetExtraBrowserOptions(self, options):
|
| - silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
|
| -
|
| - @classmethod
|
| - def Name(cls):
|
| - return 'repaint.gpu_rasterization.key_mobile_sites_repaint'
|
| -
|
|
|
| # Disabled because we do not plan on running CT benchmarks on the perf
|
| # waterfall any time soon.
|
|
|