Chromium Code Reviews| 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 | 5 from page_sets import inbox |
| 6 from telemetry import benchmark | 6 from telemetry import benchmark |
| 7 from telemetry.web_perf import timeline_based_measurement | 7 from telemetry.web_perf import timeline_based_measurement |
| 8 | 8 |
| 9 @benchmark.Disabled('android') | 9 @benchmark.Disabled |
| 10 class Inbox(benchmark.Benchmark): | 10 class Inbox(benchmark.Benchmark): |
|
nednguyen
2015/01/26 23:44:32
I think you need to remove benchmark entirely or c
| |
| 11 """Runs the timeline based measurement against inbox pageset.""" | 11 """Runs the timeline based measurement against inbox pageset.""" |
| 12 test = timeline_based_measurement.TimelineBasedMeasurement | 12 test = timeline_based_measurement.TimelineBasedMeasurement |
| 13 | 13 |
| 14 def CreatePageSet(self, options): | 14 def CreatePageSet(self, options): |
| 15 return inbox.InboxPageSet() | 15 return inbox.InboxPageSet() |
| OLD | NEW |