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

Unified Diff: tools/perf/benchmarks/pica.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/octane.py ('k') | tools/perf/benchmarks/robohornet_pro.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/pica.py
diff --git a/tools/perf/benchmarks/pica.py b/tools/perf/benchmarks/pica.py
index 800a4c906305283d2ad8c86e5499ba8c50d194df..9dfb7526d7b41d8990f8754e61691a9790f475d2 100644
--- a/tools/perf/benchmarks/pica.py
+++ b/tools/perf/benchmarks/pica.py
@@ -5,7 +5,7 @@
from telemetry import test
from telemetry.page import page_measurement
-class PicaMeasurement(page_measurement.PageMeasurement):
+class _PicaMeasurement(page_measurement.PageMeasurement):
def CustomizeBrowserOptions(self, options):
# Needed for native custom elements (document.register)
options.AppendExtraBrowserArgs(
@@ -17,5 +17,5 @@ class PicaMeasurement(page_measurement.PageMeasurement):
class Pica(test.Test):
- test = PicaMeasurement
+ test = _PicaMeasurement
page_set = 'page_sets/pica.json'
« no previous file with comments | « tools/perf/benchmarks/octane.py ('k') | tools/perf/benchmarks/robohornet_pro.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698