| Index: tools/perf/measurements/smoothness_controller.py
|
| diff --git a/tools/perf/measurements/smoothness_controller.py b/tools/perf/measurements/smoothness_controller.py
|
| index af663f8326e29f0c676e81e0f9ad0e16916fe7bf..84f16e2f26ba579a3e54697384506bdefdbec706 100644
|
| --- a/tools/perf/measurements/smoothness_controller.py
|
| +++ b/tools/perf/measurements/smoothness_controller.py
|
| @@ -31,12 +31,12 @@ class SmoothnessController(object):
|
| if tab.browser.platform.IsRawDisplayFrameRateSupported():
|
| tab.browser.platform.StartRawDisplayFrameRateMeasurement()
|
| # Start the smooth marker for all smooth actions.
|
| - runner = action_runner.ActionRunner(None, tab)
|
| + runner = action_runner.ActionRunner(tab)
|
| runner.BeginInteraction(RUN_SMOOTH_ACTIONS, [tir_module.IS_SMOOTH])
|
|
|
| def Stop(self, tab):
|
| # End the smooth marker for all smooth actions.
|
| - runner = action_runner.ActionRunner(None, tab)
|
| + runner = action_runner.ActionRunner(tab)
|
| runner.EndInteraction(RUN_SMOOTH_ACTIONS, [tir_module.IS_SMOOTH])
|
| # Stop tracing for smoothness metric.
|
| if tab.browser.platform.IsRawDisplayFrameRateSupported():
|
|
|