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 |
5 from core import perf_benchmark | 6 from core import perf_benchmark |
6 | 7 |
7 from benchmarks import silk_flags | 8 from benchmarks import silk_flags |
8 from measurements import smoothness | 9 from measurements import smoothness |
9 import page_sets | 10 import page_sets |
10 import page_sets.key_silk_cases | 11 import page_sets.key_silk_cases |
11 from telemetry import benchmark | 12 from telemetry import benchmark |
12 | 13 |
13 | 14 |
14 class _Smoothness(perf_benchmark.PerfBenchmark): | 15 class _Smoothness(perf_benchmark.PerfBenchmark): |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 | 511 |
511 | 512 |
512 @benchmark.Disabled('reference') # http://crbug.com/496684 | 513 @benchmark.Disabled('reference') # http://crbug.com/496684 |
513 class SmoothnessToughWebGLAdCases(_Smoothness): | 514 class SmoothnessToughWebGLAdCases(_Smoothness): |
514 """Measures rendering statistics while scrolling advertisements.""" | 515 """Measures rendering statistics while scrolling advertisements.""" |
515 page_set = page_sets.ToughWebglAdCasesPageSet | 516 page_set = page_sets.ToughWebglAdCasesPageSet |
516 | 517 |
517 @classmethod | 518 @classmethod |
518 def Name(cls): | 519 def Name(cls): |
519 return 'smoothness.tough_webgl_ad_cases' | 520 return 'smoothness.tough_webgl_ad_cases' |
OLD | NEW |