| Index: tools/perf/benchmarks/peacekeeper.py
|
| diff --git a/tools/perf/benchmarks/peacekeeper.py b/tools/perf/benchmarks/peacekeeper.py
|
| index e74e421dfb9226f7b3a6fe835f6e154fe9cc8c62..2e71e567b6a0ceeebe5cf76dd7f25851f7ac8f2e 100644
|
| --- a/tools/perf/benchmarks/peacekeeper.py
|
| +++ b/tools/perf/benchmarks/peacekeeper.py
|
| @@ -22,7 +22,7 @@
|
| from telemetry.page import page_set
|
| from telemetry.value import merge_values
|
|
|
| -class _PeaceKeeperMeasurement(page_measurement.PageMeasurement):
|
| +class PeaceKeeperMeasurement(page_measurement.PageMeasurement):
|
|
|
| def WillNavigateToPage(self, page, tab):
|
| page.script_to_evaluate_on_commit = """
|
| @@ -68,9 +68,9 @@
|
| results.AddSummary('Score', 'score', total, 'Total')
|
|
|
|
|
| -class _PeaceKeeperBenchmark(test.Test):
|
| +class PeaceKeeperBenchmark(test.Test):
|
| """A base class for Peackeeper benchmarks."""
|
| - test = _PeaceKeeperMeasurement
|
| + test = PeaceKeeperMeasurement
|
|
|
| def CreatePageSet(self, options):
|
| """Makes a PageSet for PeaceKeeper benchmarks."""
|
| @@ -98,7 +98,7 @@
|
| return page_set.PageSet.FromDict(page_set_dict, os.path.abspath(__file__))
|
|
|
|
|
| -class PeaceKeeperRender(_PeaceKeeperBenchmark):
|
| +class PeaceKeeperRender(PeaceKeeperBenchmark):
|
| """PeaceKeeper rendering benchmark suite.
|
|
|
| These tests measure your browser's ability to render and modify specific
|
| @@ -113,7 +113,7 @@
|
| ]
|
|
|
|
|
| -class PeaceKeeperData(_PeaceKeeperBenchmark):
|
| +class PeaceKeeperData(PeaceKeeperBenchmark):
|
| """PeaceKeeper Data operations benchmark suite.
|
|
|
| These tests measure your browser's ability to add, remove and modify data
|
| @@ -132,7 +132,7 @@
|
| ]
|
|
|
|
|
| -class PeaceKeeperDom(_PeaceKeeperBenchmark):
|
| +class PeaceKeeperDom(PeaceKeeperBenchmark):
|
| """PeaceKeeper DOM operations benchmark suite.
|
|
|
| These tests emulate the methods used to create typical dynamic webpages.
|
| @@ -172,7 +172,7 @@
|
| ]
|
|
|
|
|
| -class PeaceKeeperTextParsing(_PeaceKeeperBenchmark):
|
| +class PeaceKeeperTextParsing(PeaceKeeperBenchmark):
|
| """PeaceKeeper Text Parsing benchmark suite.
|
|
|
| These tests measure your browser's performance in typical text manipulations
|
| @@ -201,7 +201,7 @@
|
| ]
|
|
|
|
|
| -class PeaceKeeperHTML5Canvas(_PeaceKeeperBenchmark):
|
| +class PeaceKeeperHTML5Canvas(PeaceKeeperBenchmark):
|
| """PeaceKeeper HTML5 Canvas benchmark suite.
|
|
|
| These tests use HTML5 Canvas, which is a web technology for drawing and
|
| @@ -218,7 +218,7 @@
|
| ]
|
|
|
|
|
| -class PeaceKeeperHTML5Capabilities(_PeaceKeeperBenchmark):
|
| +class PeaceKeeperHTML5Capabilities(PeaceKeeperBenchmark):
|
| """PeaceKeeper HTML5 Capabilities benchmark suite.
|
|
|
| These tests checks browser HTML5 capabilities support for WebGL, Video
|
|
|