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

Unified Diff: tools/perf/measurements/smoothness.py

Issue 68203031: telemetry: Add tough scheduling cases (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Full test set. Created 7 years, 1 month 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
Index: tools/perf/measurements/smoothness.py
diff --git a/tools/perf/measurements/smoothness.py b/tools/perf/measurements/smoothness.py
index cc14a67f99386e25176e108c8f2731d4b185d605..e764f1d611c756c17b27f80cfd8cca3197f76900 100644
--- a/tools/perf/measurements/smoothness.py
+++ b/tools/perf/measurements/smoothness.py
@@ -59,3 +59,7 @@ class Smoothness(page_measurement.PageMeasurement):
if r.value is None:
raise MissingDisplayFrameRateError(r.name)
results.Add(r.name, r.unit, r.value)
+
+class SmoothnessWithRestart(Smoothness):
+ def NeedsBrowserRestartAfterEachRun(self, browser):
+ return True

Powered by Google App Engine
This is Rietveld 408576698