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

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

Issue 1557953002: Revert unfinished work of "full-frame-measurement" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@PerfPaint
Patch Set: Created 4 years, 12 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 | « third_party/WebKit/PerformanceTests/resources/runner.js ('k') | 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 673c7f8a1817f4344ab01db7e12968d8d7dbf710..75ee66dd85c21205e4a001da1bff7abd5c6781b9 100644
--- a/tools/perf/benchmarks/blink_perf.py
+++ b/tools/perf/benchmarks/blink_perf.py
@@ -112,19 +112,6 @@ class _BlinkPerfMeasurement(page_test.PageTest):
print log
-class _BlinkPerfFullFrameMeasurement(_BlinkPerfMeasurement):
- def __init__(self):
- super(_BlinkPerfFullFrameMeasurement, self).__init__()
- self._blink_perf_js += '\nwindow.fullFrameMeasurement = true;'
-
- def CustomizeBrowserOptions(self, options):
- super(_BlinkPerfFullFrameMeasurement, self).CustomizeBrowserOptions(
- options)
- # Full layout measurement needs content_shell with internals testing API.
- assert 'content-shell' in options.browser_type
- options.AppendExtraBrowserArgs(['--expose-internals-for-testing'])
-
-
class _SharedPywebsocketPageState(shared_page_state.SharedPageState):
"""Runs a pywebsocket server."""
def __init__(self, test, finder_options, user_story_set):
@@ -245,16 +232,6 @@ class BlinkPerfLayout(perf_benchmark.PerfBenchmark):
return cls.IsSvelte(possible_browser) # http://crbug.com/551950
-@benchmark.Enabled('content-shell')
-class BlinkPerfLayoutFullLayout(BlinkPerfLayout):
- tag = 'layout_full_frame'
- test = _BlinkPerfFullFrameMeasurement
-
- @classmethod
- def Name(cls):
- return 'blink_perf.layout_full_frame'
-
-
class BlinkPerfPaint(perf_benchmark.PerfBenchmark):
tag = 'paint'
test = _BlinkPerfMeasurement
@@ -296,16 +273,6 @@ class BlinkPerfSVG(perf_benchmark.PerfBenchmark):
return CreateStorySetFromPath(path, SKIPPED_FILE)
-@benchmark.Enabled('content-shell')
-class BlinkPerfSVGFullLayout(BlinkPerfSVG):
- tag = 'svg_full_frame'
- test = _BlinkPerfFullFrameMeasurement
-
- @classmethod
- def Name(cls):
- return 'blink_perf.svg_full_frame'
-
-
class BlinkPerfShadowDOM(perf_benchmark.PerfBenchmark):
tag = 'shadow_dom'
test = _BlinkPerfMeasurement
« no previous file with comments | « third_party/WebKit/PerformanceTests/resources/runner.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698