OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 from page_sets import inbox | |
6 from telemetry import benchmark | 5 from telemetry import benchmark |
7 from telemetry.web_perf import timeline_based_measurement | 6 from telemetry.web_perf import timeline_based_measurement |
8 | 7 |
| 8 from page_sets import inbox |
| 9 |
| 10 |
9 @benchmark.Disabled # http://crbug.com/452257 | 11 @benchmark.Disabled # http://crbug.com/452257 |
10 class Inbox(benchmark.Benchmark): | 12 class Inbox(benchmark.Benchmark): |
11 """Runs the timeline based measurement against inbox pageset.""" | 13 """Runs the timeline based measurement against inbox pageset.""" |
12 test = timeline_based_measurement.TimelineBasedMeasurement | 14 test = timeline_based_measurement.TimelineBasedMeasurement |
13 | 15 |
14 def CreatePageSet(self, options): | 16 def CreatePageSet(self, options): |
15 return inbox.InboxPageSet() | 17 return inbox.InboxPageSet() |
OLD | NEW |