OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 collections | 5 import collections |
6 import page_sets | 6 import page_sets |
7 import re | 7 import re |
8 | 8 |
9 from measurements import timeline_controller | 9 from measurements import timeline_controller |
10 from metrics import speedindex | 10 from metrics import speedindex |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 'DispatchFetchEvent)' | 172 'DispatchFetchEvent)' |
173 timeline_metric.AddResultsOfEvents( | 173 timeline_metric.AddResultsOfEvents( |
174 browser_process, 'IOThread', filter_text , results) | 174 browser_process, 'IOThread', filter_text , results) |
175 | 175 |
176 | 176 |
177 class ServiceWorkerPerfTest(benchmark.Benchmark): | 177 class ServiceWorkerPerfTest(benchmark.Benchmark): |
178 """Performance test on public applications using ServiceWorker""" | 178 """Performance test on public applications using ServiceWorker""" |
179 test = _ServiceWorkerMeasurement | 179 test = _ServiceWorkerMeasurement |
180 page_set = page_sets.ServiceWorkerPageSet | 180 page_set = page_sets.ServiceWorkerPageSet |
181 | 181 |
| 182 @classmethod |
| 183 def Name(cls): |
| 184 return 'service_worker.service_worker' |
| 185 |
182 | 186 |
183 # Disabled due to redness on the tree. crbug.com/442752 | 187 # Disabled due to redness on the tree. crbug.com/442752 |
184 @benchmark.Disabled('reference', 'xp') | 188 @benchmark.Disabled('reference', 'xp') |
185 class ServiceWorkerMicroBenchmarkPerfTest(benchmark.Benchmark): | 189 class ServiceWorkerMicroBenchmarkPerfTest(benchmark.Benchmark): |
186 """This test measures the performance of pages using ServiceWorker. | 190 """This test measures the performance of pages using ServiceWorker. |
187 | 191 |
188 As a page set, two benchamrk pages (many registration, many concurrent | 192 As a page set, two benchamrk pages (many registration, many concurrent |
189 fetching) and one application (Trained-to-thrill: | 193 fetching) and one application (Trained-to-thrill: |
190 https://jakearchibald.github.io/trained-to-thrill/) are included. Execution | 194 https://jakearchibald.github.io/trained-to-thrill/) are included. Execution |
191 time of these pages will be shown as Speed Index, and TRACE_EVENTs are | 195 time of these pages will be shown as Speed Index, and TRACE_EVENTs are |
192 subsidiary information to know more detail performance regression. | 196 subsidiary information to know more detail performance regression. |
193 """ | 197 """ |
194 test = _ServiceWorkerMicroBenchmarkMeasurement | 198 test = _ServiceWorkerMicroBenchmarkMeasurement |
195 page_set = page_sets.ServiceWorkerMicroBenchmarkPageSet | 199 page_set = page_sets.ServiceWorkerMicroBenchmarkPageSet |
| 200 @classmethod |
| 201 def Name(cls): |
| 202 return 'service_worker.service_worker_micro_benchmark' |
| 203 |
OLD | NEW |