| 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 import multiprocessing | 4 import multiprocessing |
| 5 | 5 |
| 6 from core import perf_benchmark | 6 from core import perf_benchmark |
| 7 | 7 |
| 8 from benchmarks import silk_flags | 8 from benchmarks import silk_flags |
| 9 from measurements import smoothness | 9 from measurements import smoothness |
| 10 import page_sets | 10 import page_sets |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 @benchmark.Disabled('android', | 114 @benchmark.Disabled('android', |
| 115 'mac') # crbug.com/567802 | 115 'mac') # crbug.com/567802 |
| 116 class SmoothnessKeyDesktopMoveCases(_Smoothness): | 116 class SmoothnessKeyDesktopMoveCases(_Smoothness): |
| 117 page_set = page_sets.KeyDesktopMoveCasesPageSet | 117 page_set = page_sets.KeyDesktopMoveCasesPageSet |
| 118 | 118 |
| 119 @classmethod | 119 @classmethod |
| 120 def Name(cls): | 120 def Name(cls): |
| 121 return 'smoothness.key_desktop_move_cases' | 121 return 'smoothness.key_desktop_move_cases' |
| 122 | 122 |
| 123 | 123 |
| 124 @benchmark.Disabled('all') # crbug.com/610338 | 124 @benchmark.Enabled('android') |
| 125 class SmoothnessKeyMobileSites(_Smoothness): | 125 class SmoothnessKeyMobileSites(_Smoothness): |
| 126 """Measures rendering statistics while scrolling down the key mobile sites. | 126 """Measures rendering statistics while scrolling down the key mobile sites. |
| 127 | 127 |
| 128 http://www.chromium.org/developers/design-documents/rendering-benchmarks | 128 http://www.chromium.org/developers/design-documents/rendering-benchmarks |
| 129 """ | 129 """ |
| 130 page_set = page_sets.KeyMobileSitesSmoothPageSet | 130 page_set = page_sets.KeyMobileSitesSmoothPageSet |
| 131 | 131 |
| 132 @classmethod | 132 @classmethod |
| 133 def Name(cls): | 133 def Name(cls): |
| 134 return 'smoothness.key_mobile_sites_smooth' | 134 return 'smoothness.key_mobile_sites_smooth' |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 """Measures rendering statistics while scrolling advertisements.""" | 549 """Measures rendering statistics while scrolling advertisements.""" |
| 550 page_set = page_sets.SyntheticToughWebglAdCasesPageSet | 550 page_set = page_sets.SyntheticToughWebglAdCasesPageSet |
| 551 | 551 |
| 552 @classmethod | 552 @classmethod |
| 553 def Name(cls): | 553 def Name(cls): |
| 554 return 'smoothness.tough_webgl_ad_cases' | 554 return 'smoothness.tough_webgl_ad_cases' |
| 555 | 555 |
| 556 @classmethod | 556 @classmethod |
| 557 def ShouldDisable(cls, possible_browser): | 557 def ShouldDisable(cls, possible_browser): |
| 558 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 | 558 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 |
| OLD | NEW |