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

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

Issue 733463005: telemetry: Fix page_cycler.netsim.top_10. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Put cache clearing logic back into SharedPageState. Created 6 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
« no previous file with comments | « tools/perf/benchmarks/page_cycler.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/measurements/page_cycler.py
diff --git a/tools/perf/measurements/page_cycler.py b/tools/perf/measurements/page_cycler.py
index e77558018aba81b7a5eb76fc1240553ca26b677c..1f9f63f03b3c471f8069b64efdf832f165e0948e 100644
--- a/tools/perf/measurements/page_cycler.py
+++ b/tools/perf/measurements/page_cycler.py
@@ -31,8 +31,10 @@ from telemetry.value import scalar
class PageCycler(page_test.PageTest):
def __init__(self, page_repeat, pageset_repeat, cold_load_percent=50,
- record_v8_object_stats=False, report_speed_index=False):
- super(PageCycler, self).__init__()
+ record_v8_object_stats=False, report_speed_index=False,
+ clear_cache_before_each_run=False):
+ super(PageCycler, self).__init__(
+ clear_cache_before_each_run=clear_cache_before_each_run)
with open(os.path.join(os.path.dirname(__file__),
'page_cycler.js'), 'r') as f:
« no previous file with comments | « tools/perf/benchmarks/page_cycler.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698