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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 | 440 |
441 | 441 |
442 class SmoothnessToughTextureUploadCases(_Smoothness): | 442 class SmoothnessToughTextureUploadCases(_Smoothness): |
443 page_set = page_sets.ToughTextureUploadCasesPageSet | 443 page_set = page_sets.ToughTextureUploadCasesPageSet |
444 | 444 |
445 @classmethod | 445 @classmethod |
446 def Name(cls): | 446 def Name(cls): |
447 return 'smoothness.tough_texture_upload_cases' | 447 return 'smoothness.tough_texture_upload_cases' |
448 | 448 |
449 | 449 |
450 # http://crbug.com/647413 | |
451 @benchmark.Disabled('android') | |
452 class SmoothnessToughAdCases(_Smoothness): | 450 class SmoothnessToughAdCases(_Smoothness): |
453 """Measures rendering statistics while displaying advertisements.""" | 451 """Measures rendering statistics while displaying advertisements.""" |
454 page_set = page_sets.SyntheticToughAdCasesPageSet | 452 page_set = page_sets.SyntheticToughAdCasesPageSet |
455 | 453 |
456 @classmethod | 454 @classmethod |
457 def Name(cls): | 455 def Name(cls): |
458 return 'smoothness.tough_ad_cases' | 456 return 'smoothness.tough_ad_cases' |
459 | 457 |
460 @classmethod | 458 @classmethod |
461 def ShouldDisable(cls, possible_browser): | 459 def ShouldDisable(cls, possible_browser): |
(...skipping 26 matching lines...) Expand all Loading... |
488 """Measures rendering statistics while scrolling advertisements.""" | 486 """Measures rendering statistics while scrolling advertisements.""" |
489 page_set = page_sets.SyntheticToughWebglAdCasesPageSet | 487 page_set = page_sets.SyntheticToughWebglAdCasesPageSet |
490 | 488 |
491 @classmethod | 489 @classmethod |
492 def Name(cls): | 490 def Name(cls): |
493 return 'smoothness.tough_webgl_ad_cases' | 491 return 'smoothness.tough_webgl_ad_cases' |
494 | 492 |
495 @classmethod | 493 @classmethod |
496 def ShouldDisable(cls, possible_browser): | 494 def ShouldDisable(cls, possible_browser): |
497 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 | 495 return cls.IsSvelte(possible_browser) # http://crbug.com/574485 |
OLD | NEW |