| Index: tools/perf/benchmarks/rasterize_and_record_micro.py
|
| diff --git a/tools/perf/benchmarks/rasterize_and_record_micro.py b/tools/perf/benchmarks/rasterize_and_record_micro.py
|
| index 5c4bf6c085e899e673b26583975c4f97b835b5be..92a6d35bfaadd740095be3ac9677f57e0533c007 100644
|
| --- a/tools/perf/benchmarks/rasterize_and_record_micro.py
|
| +++ b/tools/perf/benchmarks/rasterize_and_record_micro.py
|
| @@ -4,10 +4,8 @@
|
|
|
| from core import perf_benchmark
|
|
|
| -import ct_benchmarks_util
|
| from measurements import rasterize_and_record_micro
|
| import page_sets
|
| -from page_sets import repaint_helpers
|
| from telemetry import benchmark
|
|
|
|
|
| @@ -115,26 +113,3 @@ class RasterizeAndRecordMicroPartialInvalidation(_RasterizeAndRecordMicro):
|
| return 'rasterize_and_record_micro.partial_invalidation'
|
|
|
|
|
| -# Disabled because we do not plan on running CT benchmarks on the perf
|
| -# waterfall any time soon.
|
| -@benchmark.Disabled('all')
|
| -class RasterizeAndRecordMicroCT(_RasterizeAndRecordMicro):
|
| - """Measures rasterize and record performance for Cluster Telemetry."""
|
| -
|
| - @classmethod
|
| - def Name(cls):
|
| - return 'rasterize_and_record_micro_ct'
|
| -
|
| - @classmethod
|
| - def AddBenchmarkCommandLineArgs(cls, parser):
|
| - _RasterizeAndRecordMicro.AddBenchmarkCommandLineArgs(parser)
|
| - ct_benchmarks_util.AddBenchmarkCommandLineArgs(parser)
|
| -
|
| - @classmethod
|
| - def ProcessCommandLineArgs(cls, parser, args):
|
| - ct_benchmarks_util.ValidateCommandLineArgs(parser, args)
|
| -
|
| - def CreateStorySet(self, options):
|
| - return page_sets.CTPageSet(
|
| - options.urls_list, options.user_agent, options.archive_data_file,
|
| - run_page_interaction_callback=repaint_helpers.WaitThenRepaint)
|
|
|