| Index: tools/perf/page_sets/tough_scrolling_cases.py
|
| diff --git a/tools/perf/page_sets/tough_scrolling_cases.py b/tools/perf/page_sets/tough_scrolling_cases.py
|
| index 07fa98f8ab4ec96f7325ef191a8a2a79346b69cb..091e4f5954d9868b98458762d0b4361d5fa3745d 100644
|
| --- a/tools/perf/page_sets/tough_scrolling_cases.py
|
| +++ b/tools/perf/page_sets/tough_scrolling_cases.py
|
| @@ -10,7 +10,7 @@ class ToughScrollingCasesPage(page_module.Page):
|
| def __init__(self, url, page_set):
|
| super(ToughScrollingCasesPage, self).__init__(url=url, page_set=page_set)
|
|
|
| - def RunSmoothness(self, action_runner):
|
| + def RunPageInteractions(self, action_runner):
|
| interaction = action_runner.BeginGestureInteraction(
|
| 'ScrollAction', is_smooth=True)
|
| action_runner.ScrollPage()
|
| @@ -26,7 +26,7 @@ class ToughFastScrollingCasesPage(page_module.Page):
|
| labels=['fastscrolling'])
|
| self.speed_in_pixels_per_second = speed_in_pixels_per_second
|
|
|
| - def RunSmoothness(self, action_runner):
|
| + def RunPageInteractions(self, action_runner):
|
| interaction = action_runner.BeginGestureInteraction(
|
| 'ScrollAction', is_smooth=True)
|
| action_runner.ScrollPage(
|
|
|