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/skpicture_printer.py

Issue 730033005: telemetry: Add ct_run_benchmark to run benchmarks in CT's repository (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 6 years, 1 month 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 | « no previous file | tools/perf/ct_run_benchmark » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/skpicture_printer.py
diff --git a/tools/perf/benchmarks/skpicture_printer.py b/tools/perf/benchmarks/skpicture_printer.py
index 931e91730f6359f4c6f4b6721e33e64ff28c5955..3f29edcda04cb95197c322394cf51a182c10a9d4 100644
--- a/tools/perf/benchmarks/skpicture_printer.py
+++ b/tools/perf/benchmarks/skpicture_printer.py
@@ -8,7 +8,7 @@ from telemetry.core import discover
from telemetry.page import page_set
-def _MatchPageSetName(page_set_name, page_set_base_dir):
+def MatchPageSetName(page_set_name, page_set_base_dir):
ernstm 2014/11/24 20:15:38 Why does this need to become a public method of th
page_sets = []
page_sets += discover.DiscoverClasses(page_set_base_dir, page_set_base_dir,
page_set.PageSet,
@@ -40,6 +40,6 @@ class SkpicturePrinter(benchmark.Benchmark):
return skpicture_printer.SkpicturePrinter(options.skp_outdir)
def CreatePageSet(self, options):
- page_set_class = _MatchPageSetName(options.page_set_name,
- options.page_set_base_dir)
+ page_set_class = MatchPageSetName(options.page_set_name,
+ options.page_set_base_dir)
return page_set_class()
« no previous file with comments | « no previous file | tools/perf/ct_run_benchmark » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698