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

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

Issue 80643003: telemetry: Add rasterize_and_record benchmark for silk pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | 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 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 from telemetry import test 4 from telemetry import test
5 5
6 from measurements import rasterize_and_record 6 from measurements import rasterize_and_record
7 7
8 8
9 class RasterizeAndRecordTop25(test.Test): 9 class RasterizeAndRecordTop25(test.Test):
10 """Measures rasterize and record performance on the top 25 web pages. 10 """Measures rasterize and record performance on the top 25 web pages.
11 11
12 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 12 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
13 test = rasterize_and_record.RasterizeAndRecord 13 test = rasterize_and_record.RasterizeAndRecord
14 page_set = 'page_sets/top_25.json' 14 page_set = 'page_sets/top_25.json'
15 15
16 16
17 class RasterizeAndRecordKeyMobileSites(test.Test): 17 class RasterizeAndRecordKeyMobileSites(test.Test):
18 """Measures rasterize and record performance on the key mobile sites. 18 """Measures rasterize and record performance on the key mobile sites.
19 19
20 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 20 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
21 test = rasterize_and_record.RasterizeAndRecord 21 test = rasterize_and_record.RasterizeAndRecord
22 page_set = 'page_sets/key_mobile_sites.json' 22 page_set = 'page_sets/key_mobile_sites.json'
23
24
25 class RasterizeAndRecordSilk(test.Test):
26 """Measures rasterize and record performance on the silk sites.
27
28 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
29 test = rasterize_and_record.RasterizeAndRecord
30 page_set = 'page_sets/key_silk_cases.json'
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