Roll src/third_party/WebKit f36d5e0:68b67cd (svn 193299:193303)
[chromium-blink-merge.git] / tools / perf / benchmarks / inbox_benchmark.py
blobc25382fb716173293c71d254e5033d4db3fad420
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
3 # found in the LICENSE file.
5 from telemetry import benchmark
6 from telemetry.web_perf import timeline_based_measurement
8 from page_sets import inbox
11 @benchmark.Disabled # http://crbug.com/452257
12 class Inbox(benchmark.Benchmark):
13 """Runs the timeline based measurement against inbox pageset."""
14 test = timeline_based_measurement.TimelineBasedMeasurement
16 def CreatePageSet(self, options):
17 return inbox.InboxPageSet()