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

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

Issue 255063003: add polymer pageset to smoothness benchmark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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'
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698