OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 benchmarks import silk_flags | 5 from benchmarks import silk_flags |
6 from measurements import smoothness | 6 from measurements import smoothness |
7 from telemetry import test | 7 from telemetry import test |
8 | 8 |
9 | 9 |
10 class SmoothnessTop25(test.Test): | 10 class SmoothnessTop25(test.Test): |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 118 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
119 | 119 |
120 | 120 |
121 @test.Enabled('android') | 121 @test.Enabled('android') |
122 class SmoothnessToughPinchZoomCases(test.Test): | 122 class SmoothnessToughPinchZoomCases(test.Test): |
123 """Measures rendering statistics for pinch-zooming into the tough pinch zoom | 123 """Measures rendering statistics for pinch-zooming into the tough pinch zoom |
124 cases | 124 cases |
125 """ | 125 """ |
126 test = smoothness.Smoothness | 126 test = smoothness.Smoothness |
127 page_set = 'page_sets/tough_pinch_zoom_cases.py' | 127 page_set = 'page_sets/tough_pinch_zoom_cases.py' |
| 128 |
| 129 |
| 130 class SmoothnessPolymer(test.Test): |
| 131 """Measures rendering statistics for Polymer cases. |
| 132 """ |
| 133 test = smoothness.Smoothness |
| 134 page_set = 'page_sets/polymer.py' |
OLD | NEW |