From 11260052ca106f87b608caac6bc0f6f2bc589375 Mon Sep 17 00:00:00 2001 From: nednguyen Date: Mon, 5 Jan 2015 08:24:46 -0800 Subject: [Telemetry] Convert empty action_name_to_run to 'RunPageInteractions' for a variety of perf measurement. These measurements are only paired with default pages, or custom pages without RunPageInteractions defined. Hence, the RunPageInteractions is used which does nothing. BUG= Review URL: https://codereview.chromium.org/808883003 Cr-Commit-Position: refs/heads/master@{#309914} --- tools/perf/benchmarks/dom_perf.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools/perf/benchmarks/dom_perf.py') diff --git a/tools/perf/benchmarks/dom_perf.py b/tools/perf/benchmarks/dom_perf.py index af779b0..87c0bcb 100644 --- a/tools/perf/benchmarks/dom_perf.py +++ b/tools/perf/benchmarks/dom_perf.py @@ -39,6 +39,10 @@ SCORE_TRACE_NAME = 'score' class _DomPerfMeasurement(page_test.PageTest): + def __init__(self): + super(_DomPerfMeasurement, self).__init__( + action_name_to_run='RunPageInteractions') + def ValidateAndMeasurePage(self, page, tab, results): try: def _IsDone(): -- cgit v1.1