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

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

Issue 68203031: telemetry: Add tough scheduling cases (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude set_synthetic_delays action for now. Created 7 years 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 | tools/perf/page_sets/tough_scheduling_cases.json » ('j') | 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 import sys 5 import sys
6 6
7 from telemetry import test 7 from telemetry import test
8 8
9 from measurements import smoothness 9 from measurements import smoothness
10 10
(...skipping 11 matching lines...) Expand all
22 enabled = sys.platform != 'darwin' 22 enabled = sys.platform != 'darwin'
23 page_set = 'page_sets/tough_canvas_cases.json' 23 page_set = 'page_sets/tough_canvas_cases.json'
24 24
25 25
26 class SmoothnessKeyMobileSites(test.Test): 26 class SmoothnessKeyMobileSites(test.Test):
27 """Measures rendering statistics while scrolling down the key mobile sites. 27 """Measures rendering statistics while scrolling down the key mobile sites.
28 28
29 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 29 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
30 test = smoothness.Smoothness 30 test = smoothness.Smoothness
31 page_set = 'page_sets/key_mobile_sites.json' 31 page_set = 'page_sets/key_mobile_sites.json'
32
33
34 class SmoothnessToughSchedulingCases(test.Test):
35 """Measures rendering statistics while interacting with pages that have
36 challenging scheduling properties.
37
38 https://docs.google.com/a/chromium.org/document/d/
39 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view"""
40 test = smoothness.Smoothness
41 page_set = 'page_sets/tough_scheduling_cases.json'
OLDNEW
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_scheduling_cases.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698