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

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

Issue 23455049: [telemetry] Make single-benchmark measurements protected and undiscoverable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update discover unit tests. Created 7 years, 2 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 | « tools/perf/benchmarks/dromaeo.py ('k') | tools/perf/benchmarks/jsgamebench.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/html5gaming.py
diff --git a/tools/perf/benchmarks/html5gaming.py b/tools/perf/benchmarks/html5gaming.py
index 05d0e1811927ca495b1be02e54c0e8f72030e92b..341d0cdb71e3b3c7e8827c8152f119bd3ff284da 100644
--- a/tools/perf/benchmarks/html5gaming.py
+++ b/tools/perf/benchmarks/html5gaming.py
@@ -17,7 +17,7 @@ from telemetry.page import page_measurement
from telemetry.page import page_set
-class HTML5GamingMeasurement(page_measurement.PageMeasurement):
+class _HTML5GamingMeasurement(page_measurement.PageMeasurement):
def MeasurePage(self, _, tab, results):
tab.ExecuteJavaScript('benchmark();')
# Default value of score element is 87485, its value is updated with actual
@@ -31,7 +31,7 @@ class HTML5GamingMeasurement(page_measurement.PageMeasurement):
class HTML5Gaming(test.Test):
"""Imapct HTML5 smooth running games benchmark suite."""
- test = HTML5GamingMeasurement
+ test = _HTML5GamingMeasurement
def CreatePageSet(self, options):
return page_set.PageSet.FromDict({
'archive_data_file': '../page_sets/data/html5gaming.json',
« no previous file with comments | « tools/perf/benchmarks/dromaeo.py ('k') | tools/perf/benchmarks/jsgamebench.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698