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

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

Issue 103433002: [telemetry] Script for finding all Telemetry dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove file for realz Created 6 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/generate_profile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/peacekeeper.py
diff --git a/tools/perf/benchmarks/peacekeeper.py b/tools/perf/benchmarks/peacekeeper.py
index 2e71e567b6a0ceeebe5cf76dd7f25851f7ac8f2e..e74e421dfb9226f7b3a6fe835f6e154fe9cc8c62 100644
--- a/tools/perf/benchmarks/peacekeeper.py
+++ b/tools/perf/benchmarks/peacekeeper.py
@@ -22,7 +22,7 @@ from telemetry.page import page_measurement
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 @@ class PeaceKeeperMeasurement(page_measurement.PageMeasurement):
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 @@ class PeaceKeeperBenchmark(test.Test):
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 PeaceKeeperRender(PeaceKeeperBenchmark):
]
-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 PeaceKeeperData(PeaceKeeperBenchmark):
]
-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 PeaceKeeperDom(PeaceKeeperBenchmark):
]
-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 PeaceKeeperTextParsing(PeaceKeeperBenchmark):
]
-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 PeaceKeeperHTML5Canvas(PeaceKeeperBenchmark):
]
-class PeaceKeeperHTML5Capabilities(PeaceKeeperBenchmark):
+class PeaceKeeperHTML5Capabilities(_PeaceKeeperBenchmark):
"""PeaceKeeper HTML5 Capabilities benchmark suite.
These tests checks browser HTML5 capabilities support for WebGL, Video
« no previous file with comments | « no previous file | tools/perf/generate_profile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698