Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1834)

Unified Diff: tools/perf/benchmarks/blink_perf.py

Issue 2616343006: Revert of Add blink_perf.paint_spinvalidation and blink_perf.svg_spinvalidation suites (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698