Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Unified Diff: tools/perf/measurements/timeline_controller.py

Issue 1013803003: [Telemetry] Remove is_smooth flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failing test Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/measurements/task_execution_time_unittest.py ('k') | tools/perf/page_sets/alexa1-10000.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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))
« no previous file with comments | « tools/perf/measurements/task_execution_time_unittest.py ('k') | tools/perf/page_sets/alexa1-10000.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698