From ff753ad621604e99510d95ffd2e5e29407546956 Mon Sep 17 00:00:00 2001 From: nednguyen Date: Fri, 13 Mar 2015 11:18:13 -0700 Subject: [Telemetry] Make action_name_to_run default to 'RunPageInteractions'. Assert action_name_to_run == 'RunPageInteractions' Since this is a risky change, I haven't completely remove action_name_to_run field in page_test.py yet. Next patch will remove that and call page.RunPageInteractions() directly. BUG=418375 Review URL: https://codereview.chromium.org/981733010 Cr-Commit-Position: refs/heads/master@{#320532} --- tools/perf/benchmarks/indexeddb_perf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools/perf/benchmarks/indexeddb_perf.py') diff --git a/tools/perf/benchmarks/indexeddb_perf.py b/tools/perf/benchmarks/indexeddb_perf.py index 0679d86..d0e5ed2 100644 --- a/tools/perf/benchmarks/indexeddb_perf.py +++ b/tools/perf/benchmarks/indexeddb_perf.py @@ -33,8 +33,7 @@ from telemetry.value import scalar class _IndexedDbMeasurement(page_test.PageTest): def __init__(self): - super(_IndexedDbMeasurement, self).__init__( - action_name_to_run='RunPageInteractions') + super(_IndexedDbMeasurement, self).__init__() self._memory_metric = None self._power_metric = None -- cgit v1.1