1# Copyright 2013 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.
4
5from telemetry import benchmark
6
7from measurements import image_decoding
8import page_sets
9
10
11class ImageDecodingToughImageCases(benchmark.Benchmark):
12  test = image_decoding.ImageDecoding
13  # TODO: Rename this page set to tough_image_cases.py
14  page_set = page_sets.ImageDecodingMeasurementPageSet
15