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 core import perf_benchmark | 5 from core import perf_benchmark |
6 | 6 |
7 from benchmarks import silk_flags | 7 from benchmarks import silk_flags |
8 from benchmarks import webgl_expectations | 8 from benchmarks import webgl_expectations |
9 from measurements import smoothness | 9 from measurements import smoothness |
10 from telemetry import benchmark | 10 from telemetry import benchmark |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 return 'smoothness.sync_scroll.pathological_mobile_sites' | 388 return 'smoothness.sync_scroll.pathological_mobile_sites' |
389 | 389 |
390 | 390 |
391 class SmoothnessToughAnimatedImageCases(perf_benchmark.PerfBenchmark): | 391 class SmoothnessToughAnimatedImageCases(perf_benchmark.PerfBenchmark): |
392 test = smoothness.Smoothness | 392 test = smoothness.Smoothness |
393 page_set = page_sets.ToughAnimatedImageCasesPageSet | 393 page_set = page_sets.ToughAnimatedImageCasesPageSet |
394 | 394 |
395 @classmethod | 395 @classmethod |
396 def Name(cls): | 396 def Name(cls): |
397 return 'smoothness.tough_animated_image_cases' | 397 return 'smoothness.tough_animated_image_cases' |
| 398 |
| 399 |
| 400 class SmoothnessToughTextureUploadCases(perf_benchmark.PerfBenchmark): |
| 401 test = smoothness.Smoothness |
| 402 page_set = page_sets.ToughTextureUploadCasesPageSet |
| 403 |
| 404 @classmethod |
| 405 def Name(cls): |
| 406 return 'smoothness.tough_texture_upload_cases' |
OLD | NEW |