Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: tools/perf/benchmarks/smoothness.py

Issue 343653004: cc: Don't add new tilings while syncing a tiling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: managetilingsinsync: perftest Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 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 telemetry import test 5 from telemetry import test
6 6
7 from benchmarks import silk_flags 7 from benchmarks import silk_flags
8 from measurements import smoothness 8 from measurements import smoothness
9 import page_sets 9 import page_sets
10 10
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 """ 108 """
109 tag = 'fast_path_gpu_rasterization' 109 tag = 'fast_path_gpu_rasterization'
110 test = smoothness.Smoothness 110 test = smoothness.Smoothness
111 page_set = page_sets.KeySilkCasesPageSet 111 page_set = page_sets.KeySilkCasesPageSet
112 def CustomizeBrowserOptions(self, options): 112 def CustomizeBrowserOptions(self, options):
113 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \ 113 super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \
114 CustomizeBrowserOptions(options) 114 CustomizeBrowserOptions(options)
115 silk_flags.CustomizeBrowserOptionsForFastPath(options) 115 silk_flags.CustomizeBrowserOptionsForFastPath(options)
116 116
117 117
118 @test.Disabled # crbug.com/384730 118 @test.Enabled('android')
119 class SmoothnessToughPinchZoomCases(test.Test): 119 class SmoothnessToughPinchZoomCases(test.Test):
120 """Measures rendering statistics for pinch-zooming into the tough pinch zoom 120 """Measures rendering statistics for pinch-zooming into the tough pinch zoom
121 cases 121 cases
122 """ 122 """
123 test = smoothness.Smoothness 123 test = smoothness.Smoothness
124 page_set = page_sets.ToughPinchZoomCasesPageSet 124 page_set = page_sets.ToughPinchZoomCasesPageSet
125 125
126 126
127 @test.Disabled # crbug.com/370725 127 @test.Disabled # crbug.com/370725
128 class SmoothnessPolymer(test.Test): 128 class SmoothnessPolymer(test.Test):
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 """Measures rendering statistics for the Polymer cases with GPU rasterization 161 """Measures rendering statistics for the Polymer cases with GPU rasterization
162 using bleeding edge rendering fast paths. 162 using bleeding edge rendering fast paths.
163 """ 163 """
164 tag = 'fast_path_gpu_rasterization' 164 tag = 'fast_path_gpu_rasterization'
165 test = smoothness.Smoothness 165 test = smoothness.Smoothness
166 page_set = page_sets.PolymerPageSet 166 page_set = page_sets.PolymerPageSet
167 def CustomizeBrowserOptions(self, options): 167 def CustomizeBrowserOptions(self, options):
168 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ 168 super(SmoothnessFastPathGpuRasterizationPolymer, self). \
169 CustomizeBrowserOptions(options) 169 CustomizeBrowserOptions(options)
170 silk_flags.CustomizeBrowserOptionsForFastPath(options) 170 silk_flags.CustomizeBrowserOptionsForFastPath(options)
OLDNEW
« cc/layers/picture_image_layer_impl_unittest.cc ('K') | « cc/trees/layer_tree_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698