| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import re | 5 import re |
| 6 | 6 |
| 7 from core import perf_benchmark | 7 from core import perf_benchmark |
| 8 from telemetry import benchmark | 8 from telemetry import benchmark |
| 9 from telemetry.timeline import tracing_category_filter | 9 from telemetry.timeline import tracing_category_filter |
| 10 from telemetry.web_perf import timeline_based_measurement | 10 from telemetry.web_perf import timeline_based_measurement |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 | 40 |
| 41 @benchmark.Disabled('all') # crbug.com/613050 | 41 @benchmark.Disabled('all') # crbug.com/613050 |
| 42 class SystemHealthTop25(_SystemHealthBenchmark): | 42 class SystemHealthTop25(_SystemHealthBenchmark): |
| 43 page_set = page_sets.Top25PageSet | 43 page_set = page_sets.Top25PageSet |
| 44 | 44 |
| 45 @classmethod | 45 @classmethod |
| 46 def Name(cls): | 46 def Name(cls): |
| 47 return 'system_health.top25' | 47 return 'system_health.top25' |
| 48 | 48 |
| 49 |
| 49 @benchmark.Disabled('android') # crbug.com/601953 | 50 @benchmark.Disabled('android') # crbug.com/601953 |
| 50 @benchmark.Disabled('all') # crbug.com/613050 | 51 @benchmark.Disabled('all') # crbug.com/613050 |
| 51 class SystemHealthKeyMobileSites(_SystemHealthBenchmark): | 52 class SystemHealthKeyMobileSites(_SystemHealthBenchmark): |
| 52 page_set = page_sets.KeyMobileSitesPageSet | 53 page_set = page_sets.KeyMobileSitesPageSet |
| 53 | 54 |
| 54 @classmethod | 55 @classmethod |
| 55 def Name(cls): | 56 def Name(cls): |
| 56 return 'system_health.key_mobile_sites' | 57 return 'system_health.key_mobile_sites' |
| 57 | 58 |
| 58 | 59 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 class MobileMemorySystemHealth(_MemorySystemHealthBenchmark): | 101 class MobileMemorySystemHealth(_MemorySystemHealthBenchmark): |
| 101 """Mobile Chrome Memory System Health Benchmark.""" | 102 """Mobile Chrome Memory System Health Benchmark.""" |
| 102 page_set = page_sets.MobileMemorySystemHealthStorySet | 103 page_set = page_sets.MobileMemorySystemHealthStorySet |
| 103 | 104 |
| 104 @classmethod | 105 @classmethod |
| 105 def ShouldDisable(cls, possible_browser): | 106 def ShouldDisable(cls, possible_browser): |
| 106 # http://crbug.com/612144 (reference on Nexus 5X). | 107 # http://crbug.com/612144 (reference on Nexus 5X). |
| 107 return possible_browser.platform.GetDeviceTypeName() == 'Desktop' or ( | 108 return possible_browser.platform.GetDeviceTypeName() == 'Desktop' or ( |
| 108 possible_browser.browser_type == 'reference' and | 109 possible_browser.browser_type == 'reference' and |
| 109 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X') | 110 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X') |
| 111 |
| 112 @benchmark.Enabled('android-webview') |
| 113 class WebviewStartupSystemHealthBenchmark(perf_benchmark.PerfBenchmark): |
| 114 """Webview startup time benchmark |
| 115 |
| 116 Benchmark that measures how long WebView takes to start up |
| 117 and load a blank page. Since thie metric only requires the trace |
| 118 markers recorded in atrace, Chrome tracing is not enabled for this |
| 119 benchmark. |
| 120 """ |
| 121 page_set = page_sets.BlankPageSet |
| 122 |
| 123 def CreateTimelineBasedMeasurementOptions(self): |
| 124 options = timeline_based_measurement.Options() |
| 125 options.SetTimelineBasedMetric('webviewStartupMetric') |
| 126 options.config.enable_atrace_trace = True |
| 127 options.config.enable_chrome_trace = False |
| 128 options.config.atrace_config.app_name = 'org.chromium.webview_shell' |
| 129 return options |
| 130 |
| 131 @classmethod |
| 132 def Name(cls): |
| 133 return 'system_health.webview_startup' |
| OLD | NEW |