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

Unified Diff: tools/perf/benchmarks/octane.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/kraken.py ('k') | tools/perf/benchmarks/pica.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/octane.py
diff --git a/tools/perf/benchmarks/octane.py b/tools/perf/benchmarks/octane.py
index 2862e6200da25ef92c1a430cd2008c48932479c9..91eb99f704fd4064e78ffe8cc0844fe9d31cffdf 100644
--- a/tools/perf/benchmarks/octane.py
+++ b/tools/perf/benchmarks/octane.py
@@ -10,7 +10,7 @@ from telemetry.page import page_measurement
from telemetry.page import page_set
-class OctaneMeasurement(page_measurement.PageMeasurement):
+class _OctaneMeasurement(page_measurement.PageMeasurement):
def MeasurePage(self, _, tab, results):
tab.WaitForJavaScriptExpression(
'completed && !document.getElementById("progress-bar-container")', 300)
@@ -41,7 +41,7 @@ JSON.stringify(results);
class Octane(test.Test):
"""Google's Octane JavaScript benchmark."""
- test = OctaneMeasurement
+ test = _OctaneMeasurement
def CreatePageSet(self, options):
octane_dir = os.path.join(util.GetChromiumSrcDir(), 'chrome', 'test',
« no previous file with comments | « tools/perf/benchmarks/kraken.py ('k') | tools/perf/benchmarks/pica.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698