| Index: tools/perf/page_sets/alexa1-10000.py
|
| diff --git a/tools/perf/page_sets/alexa1-10000.py b/tools/perf/page_sets/alexa1-10000.py
|
| index 0f890c655db0f01c787a5cc381d5ad860da36e5f..db72102b578f9ef46383c5e7c58b77210ab9f3bd 100644
|
| --- a/tools/perf/page_sets/alexa1-10000.py
|
| +++ b/tools/perf/page_sets/alexa1-10000.py
|
| @@ -22,10 +22,8 @@ class Alexa1To10000Page(Page):
|
| super(Alexa1To10000Page, self).__init__(url=url, page_set=page_set)
|
|
|
| def RunPageInteractions(self, action_runner):
|
| - interaction = action_runner.BeginGestureInteraction(
|
| - 'ScrollAction')
|
| - action_runner.ScrollPage()
|
| - interaction.End()
|
| + with action_runner.CreateGestureInteraction('ScrollAction'):
|
| + action_runner.ScrollPage()
|
|
|
|
|
| class Alexa1To10000PageSet(PageSet):
|
|
|