Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / tools / perf / benchmarks / inbox_benchmark.py
blob124d235dc37026e1e871d4e12b3334efe6ea9f8e
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 core import perf_benchmark
7 from telemetry import benchmark
8 from telemetry.web_perf import timeline_based_measurement
10 from page_sets import inbox
13 @benchmark.Disabled # http://crbug.com/452257
14 class Inbox(perf_benchmark.PerfBenchmark):
15 """Runs the timeline based measurement against inbox pageset."""
16 test = timeline_based_measurement.TimelineBasedMeasurement
18 def CreatePageSet(self, options):
19 return inbox.InboxPageSet()