| OLD | NEW |
| 1 # Copyright (c) 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 | 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 @test.Disabled # crbug.com/368767 | 10 @test.Disabled # crbug.com/368767 |
| 11 class SmoothnessTop25(test.Test): | 11 class SmoothnessTop25(test.Test): |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 """Measures rendering statistics for the Polymer cases with GPU rasterization | 159 """Measures rendering statistics for the Polymer cases with GPU rasterization |
| 160 using bleeding edge rendering fast paths. | 160 using bleeding edge rendering fast paths. |
| 161 """ | 161 """ |
| 162 tag = 'fast_path_gpu_rasterization' | 162 tag = 'fast_path_gpu_rasterization' |
| 163 test = smoothness.Smoothness | 163 test = smoothness.Smoothness |
| 164 page_set = 'page_sets/polymer.py' | 164 page_set = 'page_sets/polymer.py' |
| 165 def CustomizeBrowserOptions(self, options): | 165 def CustomizeBrowserOptions(self, options): |
| 166 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ | 166 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ |
| 167 CustomizeBrowserOptions(options) | 167 CustomizeBrowserOptions(options) |
| 168 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 168 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
| OLD | NEW |