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

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

Issue 134733019: Add perf histogram and tests for inline signin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
5 from measurements import signin
6 from telemetry import test
7
8 class SigninSingleTab(test.Test):
9 tag = 'navigate'
10 test = signin.SigninMeasurement
11 page_set = 'page_sets/signin.json'
12 options = {'pageset_repeat_iters': 5}
13
14
15 class SigninMultiTab(test.Test):
16 tag = 'multitab_navigate'
17 test = signin.SigninMultiTabMeasurement
18 page_set = 'page_sets/signin.json'
19 options = {'pageset_repeat_iters': 10}
20
21
22 class SigninStartup(test.Test):
23 # This test runs against the real gaia server, thus should not be used for
24 # benchmarking.
25 tag = 'startup'
26 test = signin.SigninStartUpMeasurement
27 page_set = 'page_sets/blank_page.json'
28 options = {'pageset_repeat_iters': 5}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698