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

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

Issue 124733002: [Telemetry] Support downloading profiles from cloud storage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace fixes Created 6 years, 11 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
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 from telemetry import test
5
6 from measurements import startup
7
8
9 class StartupColdTheme(test.Test):
tonyg 2014/01/06 18:53:55 I recommend putting these in benchmarks/startup.py
10 tag = 'theme_cold'
11 test = startup.Startup
12 page_set = 'page_sets/blank_page.json'
13 generated_profile_archive = 'theme_profile.zip'
14 options = {'cold': True,
15 'pageset_repeat_iters': 5}
16
17
18 class StartupWarmTheme(test.Test):
19 tag = 'theme_warm'
20 test = startup.Startup
21 page_set = 'page_sets/blank_page.json'
22 generated_profile_archive = 'theme_profile.zip'
23 options = {'warm': True,
24 'pageset_repeat_iters': 20}
25
26 class StartupColdManyExtensions(test.Test):
27 tag = 'many_extensions_cold'
28 test = startup.Startup
29 page_set = 'page_sets/blank_page.json'
30 generated_profile_archive = 'many_extensions_profile.zip'
31 options = {'cold': True,
32 'pageset_repeat_iters': 5}
33
34
35 class StartupWarmManyExtensions(test.Test):
36 tag = 'many_extensions_warm'
37 test = startup.Startup
38 page_set = 'page_sets/blank_page.json'
39 generated_profile_archive = 'many_extensions_profile.zip'
40 options = {'warm': True,
41 'pageset_repeat_iters': 20}
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698