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

Unified Diff: tools/perf/benchmarks/canvasmark.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/blink_perf.py ('k') | tools/perf/benchmarks/dom_perf.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/canvasmark.py
diff --git a/tools/perf/benchmarks/canvasmark.py b/tools/perf/benchmarks/canvasmark.py
index 4628e3b986456510b8b43a8c6fe55fdd872d35f0..56f30182908446a83369a88859823f9611a55ffb 100644
--- a/tools/perf/benchmarks/canvasmark.py
+++ b/tools/perf/benchmarks/canvasmark.py
@@ -15,7 +15,7 @@ from telemetry import test
from telemetry.page import page_measurement
from telemetry.page import page_set
-class CanvasMarkMeasurement(page_measurement.PageMeasurement):
+class _CanvasMarkMeasurement(page_measurement.PageMeasurement):
def WillNavigateToPage(self, page, tab):
page.script_to_evaluate_on_commit = """
@@ -46,7 +46,7 @@ class CanvasMarkMeasurement(page_measurement.PageMeasurement):
class CanvasMark(test.Test):
- test = CanvasMarkMeasurement
+ test = _CanvasMarkMeasurement
def CreatePageSet(self, options):
return page_set.PageSet.FromDict({
« no previous file with comments | « tools/perf/benchmarks/blink_perf.py ('k') | tools/perf/benchmarks/dom_perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698