| Index: tools/perf/measurements/timeline_controller.py
|
| diff --git a/tools/perf/measurements/timeline_controller.py b/tools/perf/measurements/timeline_controller.py
|
| index 2348ec4a89d9f5db5850c3362b8f02b0ab9ff507..857384a46e9cf1fc25a0d61a1c4f49327511e53a 100644
|
| --- a/tools/perf/measurements/timeline_controller.py
|
| +++ b/tools/perf/measurements/timeline_controller.py
|
| @@ -44,7 +44,7 @@ class TimelineController(object):
|
| # Start the smooth marker for all actions.
|
| runner = action_runner.ActionRunner(tab)
|
| self._interaction = runner.BeginInteraction(
|
| - RUN_SMOOTH_ACTIONS, is_smooth=True)
|
| + RUN_SMOOTH_ACTIONS)
|
|
|
| def Stop(self, tab, results):
|
| # End the smooth marker for all actions.
|
| @@ -68,7 +68,7 @@ class TimelineController(object):
|
| 'TimelineController cannot issue more than 1 %s record' %
|
| RUN_SMOOTH_ACTIONS)
|
| run_smooth_actions_record = r
|
| - elif r.is_smooth:
|
| + else:
|
| self._smooth_records.append(
|
| smooth_gesture_util.GetAdjustedInteractionIfContainGesture(
|
| self.model, r))
|
|
|