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 from integration_tests import chrome_proxy_measurements as measurements | 5 from integration_tests import chrome_proxy_measurements as measurements |
6 from integration_tests import chrome_proxy_pagesets as pagesets | 6 from integration_tests import chrome_proxy_pagesets as pagesets |
7 from telemetry import benchmark | 7 from telemetry import benchmark |
8 | 8 |
9 | 9 |
10 @benchmark.Enabled('android') | 10 @benchmark.Enabled('android') |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 | 111 |
112 @benchmark.Enabled('android') | 112 @benchmark.Enabled('android') |
113 class ChromeProxyHTTPFallbackViaHeader(benchmark.Benchmark): | 113 class ChromeProxyHTTPFallbackViaHeader(benchmark.Benchmark): |
114 tag = 'fallback-viaheader' | 114 tag = 'fallback-viaheader' |
115 test = measurements.ChromeProxyHTTPFallbackViaHeader | 115 test = measurements.ChromeProxyHTTPFallbackViaHeader |
116 page_set = pagesets.FallbackViaHeaderPageSet | 116 page_set = pagesets.FallbackViaHeaderPageSet |
117 | 117 |
118 | 118 |
119 @benchmark.Enabled('android') | 119 @benchmark.Enabled('android') |
| 120 class ChromeProxyHTTPToDirectFallback(benchmark.Benchmark): |
| 121 tag = 'http-to-direct-fallback' |
| 122 test = measurements.ChromeProxyHTTPToDirectFallback |
| 123 page_set = pagesets.HTTPToDirectFallbackPageSet |
| 124 |
| 125 |
| 126 @benchmark.Enabled('android') |
120 class ChromeProxySmoke(benchmark.Benchmark): | 127 class ChromeProxySmoke(benchmark.Benchmark): |
121 tag = 'smoke' | 128 tag = 'smoke' |
122 test = measurements.ChromeProxySmoke | 129 test = measurements.ChromeProxySmoke |
123 page_set = pagesets.SmokePageSet | 130 page_set = pagesets.SmokePageSet |
OLD | NEW |