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

Unified Diff: tools/perf/benchmarks/kraken.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/jsgamebench.py ('k') | tools/perf/benchmarks/octane.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/kraken.py
diff --git a/tools/perf/benchmarks/kraken.py b/tools/perf/benchmarks/kraken.py
index 0484d22cc9823fb63d7dc371b42db68085c907d4..0fd4291dd2467d55a26b24da15bc9934c19855fa 100644
--- a/tools/perf/benchmarks/kraken.py
+++ b/tools/perf/benchmarks/kraken.py
@@ -15,7 +15,7 @@ def _Mean(l):
return float(sum(l)) / len(l) if len(l) > 0 else 0.0
-class KrakenMeasurement(page_measurement.PageMeasurement):
+class _KrakenMeasurement(page_measurement.PageMeasurement):
def MeasurePage(self, _, tab, results):
tab.WaitForDocumentReadyStateToBeComplete()
tab.WaitForJavaScriptExpression(
@@ -37,7 +37,7 @@ decodeURIComponent(formElement.value.split("?")[1]);
class Kraken(test.Test):
"""Mozilla's Kraken JavaScript benchmark."""
- test = KrakenMeasurement
+ test = _KrakenMeasurement
def CreatePageSet(self, options):
return page_set.PageSet.FromDict({
« no previous file with comments | « tools/perf/benchmarks/jsgamebench.py ('k') | tools/perf/benchmarks/octane.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698