| 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):
|
|
|