Index: tools/perf/benchmarks/blink_perf.py |
diff --git a/tools/perf/benchmarks/blink_perf.py b/tools/perf/benchmarks/blink_perf.py |
index deb1f7df1ac06a7831e1a13673ce92575efea9bb..943f3f7c2d5234358c0b0def150943fb224f1bfc 100644 |
--- a/tools/perf/benchmarks/blink_perf.py |
+++ b/tools/perf/benchmarks/blink_perf.py |
@@ -119,17 +119,6 @@ class _BlinkPerfMeasurement(legacy_page_test.LegacyPageTest): |
print log |
-class _BlinkPerfMeasurementSlimmingPaintInvalidation(_BlinkPerfMeasurement): |
- """Measures blink perf with the new paint invalidation system (see: |
- https://goo.gl/eQczQW). The benchmarks using this measurement should be |
- removed when slimming paint invalidation ships.""" |
- def CustomizeBrowserOptions(self, options): |
- _BlinkPerfMeasurement.CustomizeBrowserOptions(self, options) |
- options.AppendExtraBrowserArgs([ |
- '--enable-blink-features=SlimmingPaintInvalidation' |
- ]) |
- |
- |
class _BlinkPerfBenchmark(perf_benchmark.PerfBenchmark): |
test = _BlinkPerfMeasurement |
@@ -229,11 +218,6 @@ class BlinkPerfPaint(_BlinkPerfBenchmark): |
return cls.IsSvelte(possible_browser) # http://crbug.com/574483 |
-class BlinkPerfPaintSlimmingPaintInvalidation(BlinkPerfPaint): |
- tag = 'paint_slimmingpaintinvalidation' |
- test = _BlinkPerfMeasurementSlimmingPaintInvalidation |
- |
- |
@benchmark.Disabled('win') # crbug.com/488493 |
class BlinkPerfParser(_BlinkPerfBenchmark): |
tag = 'parser' |
@@ -245,11 +229,6 @@ class BlinkPerfSVG(_BlinkPerfBenchmark): |
subdir = 'SVG' |
-class BlinkPerfSVGSlimmingPaintInvalidation(BlinkPerfSVG): |
- tag = 'svg_slimmingpaintinvalidation' |
- test = _BlinkPerfMeasurementSlimmingPaintInvalidation |
- |
- |
class BlinkPerfShadowDOM(_BlinkPerfBenchmark): |
tag = 'shadow_dom' |
subdir = 'ShadowDOM' |