diff options
author | nednguyen <nednguyen@google.com> | 2014-10-27 09:11:12 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-27 16:11:36 +0000 |
commit | 02d750113b2e1863619d5c397edf22bbeb4e3cb6 (patch) | |
tree | d525b39ada06437523e888d963a22c3b9284440c /tools/perf/page_sets | |
parent | c9205ddc2489bd76aa4bdbdbc30bd38ab1b74e28 (diff) | |
download | chromium_src-02d750113b2e1863619d5c397edf22bbeb4e3cb6.zip chromium_src-02d750113b2e1863619d5c397edf22bbeb4e3cb6.tar.gz chromium_src-02d750113b2e1863619d5c397edf22bbeb4e3cb6.tar.bz2 |
[Telemetry] Remove RunTaskExecutionTime method
BUG=418375
Review URL: https://codereview.chromium.org/673373002
Cr-Commit-Position: refs/heads/master@{#301374}
Diffstat (limited to 'tools/perf/page_sets')
-rw-r--r-- | tools/perf/page_sets/key_mobile_sites.py | 6 | ||||
-rw-r--r-- | tools/perf/page_sets/tough_scheduling_cases.py | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/tools/perf/page_sets/key_mobile_sites.py b/tools/perf/page_sets/key_mobile_sites.py index 2f1e16c..2a90ef8 100644 --- a/tools/perf/page_sets/key_mobile_sites.py +++ b/tools/perf/page_sets/key_mobile_sites.py @@ -23,12 +23,6 @@ class KeyMobileSitesPage(page_module.Page): def RunRepaint(self, action_runner): action_runner.RepaintContinuously(seconds=5) - def RunTaskExecutionTime(self, action_runner): - interaction = action_runner.BeginGestureInteraction( - 'ScrollAction', is_smooth=True) - action_runner.ScrollPage() - interaction.End() - class Page1(KeyMobileSitesPage): diff --git a/tools/perf/page_sets/tough_scheduling_cases.py b/tools/perf/page_sets/tough_scheduling_cases.py index d744058..4f83caf 100644 --- a/tools/perf/page_sets/tough_scheduling_cases.py +++ b/tools/perf/page_sets/tough_scheduling_cases.py @@ -19,12 +19,6 @@ class ToughSchedulingCasesPage(page_module.Page): action_runner.ScrollPage() interaction.End() - def RunTaskExecutionTime(self, action_runner): - interaction = action_runner.BeginGestureInteraction( - 'ScrollAction', is_smooth=True) - action_runner.ScrollPage() - interaction.End() - class Page1(ToughSchedulingCasesPage): |