OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 thread_times | 6 from measurements import thread_times |
7 | 7 |
8 class SilkKeySilkCases(test.Test): | 8 class SilkKeySilkCases(test.Test): |
9 """Measures timeline metrics while performing smoothness action on | 9 """Measures timeline metrics while performing smoothness action on |
10 key silk cases. | 10 key silk cases. |
11 | 11 |
12 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 12 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
13 test = thread_times.ThreadTimes | 13 test = thread_times.ThreadTimes |
14 page_set = 'page_sets/key_silk_cases.json' | 14 page_set = 'page_sets/key_silk_cases.json' |
15 options = {"report_silk_details": True} | 15 options = {"report_silk_results": True} |
epenner
2014/01/16 01:38:58
I didn't see this being used, so I've changed the
| |
OLD | NEW |