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

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

Issue 994683003: Rename page filter options to story options. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename filter options in benchmarks. 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 unified diff | Download patch
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/thread_times.py » ('j') | 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 benchmarks import silk_flags 5 from benchmarks import silk_flags
6 from benchmarks import webgl_expectations 6 from benchmarks import webgl_expectations
7 from measurements import smoothness 7 from measurements import smoothness
8 import page_sets 8 import page_sets
9 from telemetry import benchmark 9 from telemetry import benchmark
10 10
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) 209 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
210 210
211 @classmethod 211 @classmethod
212 def Name(cls): 212 def Name(cls):
213 return 'smoothness.gpu_rasterization.polymer' 213 return 'smoothness.gpu_rasterization.polymer'
214 214
215 215
216 class SmoothnessToughFastScrollingCases(benchmark.Benchmark): 216 class SmoothnessToughFastScrollingCases(benchmark.Benchmark):
217 test = smoothness.Smoothness 217 test = smoothness.Smoothness
218 page_set = page_sets.ToughScrollingCasesPageSet 218 page_set = page_sets.ToughScrollingCasesPageSet
219 options = {'page_label_filter': 'fastscrolling'} 219 options = {'story_label_filter': 'fastscrolling'}
220 220
221 @classmethod 221 @classmethod
222 def Name(cls): 222 def Name(cls):
223 return 'smoothness.tough_scrolling_cases' 223 return 'smoothness.tough_scrolling_cases'
224 224
225 225
226 class SmoothnessImageDecodingCases(benchmark.Benchmark): 226 class SmoothnessImageDecodingCases(benchmark.Benchmark):
227 """Measures decoding statistics for jpeg images. 227 """Measures decoding statistics for jpeg images.
228 """ 228 """
229 test = smoothness.Smoothness 229 test = smoothness.Smoothness
(...skipping 28 matching lines...) Expand all
258 @benchmark.Enabled('android') 258 @benchmark.Enabled('android')
259 class SmoothnessPathologicalMobileSites(benchmark.Benchmark): 259 class SmoothnessPathologicalMobileSites(benchmark.Benchmark):
260 """Measures task execution statistics while scrolling pathological sites. 260 """Measures task execution statistics while scrolling pathological sites.
261 """ 261 """
262 test = smoothness.Smoothness 262 test = smoothness.Smoothness
263 page_set = page_sets.PathologicalMobileSitesPageSet 263 page_set = page_sets.PathologicalMobileSitesPageSet
264 264
265 @classmethod 265 @classmethod
266 def Name(cls): 266 def Name(cls):
267 return 'smoothness.pathological_mobile_sites' 267 return 'smoothness.pathological_mobile_sites'
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/media.py ('k') | tools/perf/benchmarks/thread_times.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698