| 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 measurements import page_cycler | 7 from measurements import page_cycler |
| 8 import page_sets | 8 import page_sets |
| 9 from telemetry import benchmark | 9 from telemetry import benchmark |
| 10 | 10 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 Runs against pages recorded in April, 2013. | 91 Runs against pages recorded in April, 2013. |
| 92 """ | 92 """ |
| 93 page_set = page_sets.IntlJaZhPageSet | 93 page_set = page_sets.IntlJaZhPageSet |
| 94 | 94 |
| 95 @classmethod | 95 @classmethod |
| 96 def Name(cls): | 96 def Name(cls): |
| 97 return 'page_cycler.intl_ja_zh' | 97 return 'page_cycler.intl_ja_zh' |
| 98 | 98 |
| 99 | 99 |
| 100 @benchmark.Disabled('xp', 'android') # crbug.com/434366, crbug.com/506903 | 100 @benchmark.Disabled('xp') # crbug.com/434366 |
| 101 class PageCyclerIntlKoThVi(_PageCycler): | 101 class PageCyclerIntlKoThVi(_PageCycler): |
| 102 """Page load time for a variety of pages in Korean, Thai and Vietnamese. | 102 """Page load time for a variety of pages in Korean, Thai and Vietnamese. |
| 103 | 103 |
| 104 Runs against pages recorded in April, 2013. | 104 Runs against pages recorded in April, 2013. |
| 105 """ | 105 """ |
| 106 page_set = page_sets.IntlKoThViPageSet | 106 page_set = page_sets.IntlKoThViPageSet |
| 107 | 107 |
| 108 @classmethod | 108 @classmethod |
| 109 def Name(cls): | 109 def Name(cls): |
| 110 return 'page_cycler.intl_ko_th_vi' | 110 return 'page_cycler.intl_ko_th_vi' |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 def Name(cls): | 246 def Name(cls): |
| 247 return 'page_cycler.basic_oopif' | 247 return 'page_cycler.basic_oopif' |
| 248 | 248 |
| 249 | 249 |
| 250 @benchmark.Disabled('all') # crbug.com/443730 | 250 @benchmark.Disabled('all') # crbug.com/443730 |
| 251 class PageCyclerBigJs(_PageCycler): | 251 class PageCyclerBigJs(_PageCycler): |
| 252 page_set = page_sets.BigJsPageSet | 252 page_set = page_sets.BigJsPageSet |
| 253 @classmethod | 253 @classmethod |
| 254 def Name(cls): | 254 def Name(cls): |
| 255 return 'page_cycler.big_js' | 255 return 'page_cycler.big_js' |
| OLD | NEW |