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

Side by Side Diff: tools/perf/measurements/smoothness.py

Issue 2372753003: Remove obsolete references to threaded-compositing and impl-side-painting flags. (Closed)
Patch Set: Remove --enable-threaded-compositing flag as well. Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « tools/perf/measurements/rasterize_and_record_micro.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from telemetry.page import legacy_page_test 5 from telemetry.page import legacy_page_test
6 from telemetry.timeline import chrome_trace_category_filter 6 from telemetry.timeline import chrome_trace_category_filter
7 from telemetry.web_perf import timeline_based_measurement 7 from telemetry.web_perf import timeline_based_measurement
8 from telemetry.web_perf.metrics import smoothness 8 from telemetry.web_perf.metrics import smoothness
9 9
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 def DidRunPage(self, platform): 64 def DidRunPage(self, platform):
65 if self._tbm: 65 if self._tbm:
66 self._tbm.DidRunStory(platform) 66 self._tbm.DidRunStory(platform)
67 67
68 68
69 class Repaint(Smoothness): 69 class Repaint(Smoothness):
70 70
71 def CustomizeBrowserOptions(self, options): 71 def CustomizeBrowserOptions(self, options):
72 options.AppendExtraBrowserArgs([ 72 options.AppendExtraBrowserArgs([
73 '--enable-impl-side-painting',
74 '--enable-threaded-compositing',
75 '--enable-gpu-benchmarking' 73 '--enable-gpu-benchmarking'
76 ]) 74 ])
77 75
78 76
79 class SmoothnessWithRestart(Smoothness): 77 class SmoothnessWithRestart(Smoothness):
80 78
81 def __init__(self): 79 def __init__(self):
82 super(SmoothnessWithRestart, self).__init__( 80 super(SmoothnessWithRestart, self).__init__(
83 needs_browser_restart_after_each_page=True) 81 needs_browser_restart_after_each_page=True)
OLDNEW
« no previous file with comments | « tools/perf/measurements/rasterize_and_record_micro.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698