| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 @benchmark.Enabled('android') | 67 @benchmark.Enabled('android') |
| 68 class SmoothnessMaps(benchmark.Benchmark): | 68 class SmoothnessMaps(benchmark.Benchmark): |
| 69 test = smoothness.Smoothness | 69 test = smoothness.Smoothness |
| 70 page_set = page_sets.MapsPageSet | 70 page_set = page_sets.MapsPageSet |
| 71 | 71 |
| 72 @classmethod | 72 @classmethod |
| 73 def Name(cls): | 73 def Name(cls): |
| 74 return 'smoothness.maps' | 74 return 'smoothness.maps' |
| 75 | 75 |
| 76 | 76 |
| 77 @benchmark.Disabled('android') |
| 78 class SmoothnessKeyDesktopMoveCases(benchmark.Benchmark): |
| 79 test = smoothness.Smoothness |
| 80 page_set = page_sets.KeyDesktopMoveCasesPageSet |
| 81 |
| 82 @classmethod |
| 83 def Name(cls): |
| 84 return 'smoothness.key_desktop_move_cases' |
| 85 |
| 86 |
| 77 @benchmark.Enabled('android') | 87 @benchmark.Enabled('android') |
| 78 class SmoothnessKeyMobileSites(benchmark.Benchmark): | 88 class SmoothnessKeyMobileSites(benchmark.Benchmark): |
| 79 """Measures rendering statistics while scrolling down the key mobile sites. | 89 """Measures rendering statistics while scrolling down the key mobile sites. |
| 80 | 90 |
| 81 http://www.chromium.org/developers/design-documents/rendering-benchmarks | 91 http://www.chromium.org/developers/design-documents/rendering-benchmarks |
| 82 """ | 92 """ |
| 83 test = smoothness.Smoothness | 93 test = smoothness.Smoothness |
| 84 page_set = page_sets.KeyMobileSitesSmoothPageSet | 94 page_set = page_sets.KeyMobileSitesSmoothPageSet |
| 85 | 95 |
| 86 @classmethod | 96 @classmethod |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 tag = 'sync_scroll' | 284 tag = 'sync_scroll' |
| 275 test = smoothness.Smoothness | 285 test = smoothness.Smoothness |
| 276 page_set = page_sets.PathologicalMobileSitesPageSet | 286 page_set = page_sets.PathologicalMobileSitesPageSet |
| 277 | 287 |
| 278 def CustomizeBrowserOptions(self, options): | 288 def CustomizeBrowserOptions(self, options): |
| 279 silk_flags.CustomizeBrowserOptionsForSyncScrolling(options) | 289 silk_flags.CustomizeBrowserOptionsForSyncScrolling(options) |
| 280 | 290 |
| 281 @classmethod | 291 @classmethod |
| 282 def Name(cls): | 292 def Name(cls): |
| 283 return 'smoothness.sync_scroll.pathological_mobile_sites' | 293 return 'smoothness.sync_scroll.pathological_mobile_sites' |
| OLD | NEW |