| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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' |
| OLD | NEW |