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

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

Issue 876313010: [Telemetry] Remove actions in RunPageInteractions for some of page_cycler's pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | tools/perf/page_sets/intl_ar_fa_he.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/page_cycler.py
diff --git a/tools/perf/benchmarks/page_cycler.py b/tools/perf/benchmarks/page_cycler.py
index b00f5057aab54cfcf113b90d044c1e5860bbf17f..7c29bbd189a050ab81b2d51b88e9f9970ce631e8 100644
--- a/tools/perf/benchmarks/page_cycler.py
+++ b/tools/perf/benchmarks/page_cycler.py
@@ -169,12 +169,14 @@ class PageCyclerTop10Mobile(_PageCycler):
Runs against pages recorded in November, 2013.
"""
- page_set = page_sets.Top10MobilePageSet
@classmethod
def Name(cls):
return 'page_cycler.top_10_mobile'
+ def CreatePageSet(self, options):
+ return page_sets.Top10MobilePageSet(run_no_page_interactions=True)
+
@benchmark.Disabled
class PageCyclerKeyMobileSites(_PageCycler):
@@ -207,12 +209,14 @@ class PageCyclerTypical25(_PageCycler):
Designed to represent typical, not highly optimized or highly popular web
sites. Runs against pages recorded in June, 2014.
"""
- page_set = page_sets.Typical25PageSet
@classmethod
def Name(cls):
return 'page_cycler.typical_25'
+ def CreatePageSet(self, options):
+ return page_sets.Typical25PageSet(run_no_page_interactions=True)
+
@benchmark.Disabled # crbug.com/443730
class PageCyclerBigJs(_PageCycler):
« no previous file with comments | « no previous file | tools/perf/page_sets/intl_ar_fa_he.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698