diff options
author | nednguyen <nednguyen@google.com> | 2015-03-13 11:18:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-13 18:18:48 +0000 |
commit | ff753ad621604e99510d95ffd2e5e29407546956 (patch) | |
tree | b045b14685cf43ff1e8ec6b3cfd73f7b285e3cb0 /tools/perf/benchmarks/indexeddb_perf.py | |
parent | a305046d511770a692f08d33e2998f682d38b747 (diff) | |
download | chromium_src-ff753ad621604e99510d95ffd2e5e29407546956.zip chromium_src-ff753ad621604e99510d95ffd2e5e29407546956.tar.gz chromium_src-ff753ad621604e99510d95ffd2e5e29407546956.tar.bz2 |
[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}
Diffstat (limited to 'tools/perf/benchmarks/indexeddb_perf.py')
-rw-r--r-- | tools/perf/benchmarks/indexeddb_perf.py | 3 |
1 files changed, 1 insertions, 2 deletions
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 |