summaryrefslogtreecommitdiffstats
path: root/tools/perf/benchmarks/image_decoding.py
blob: 96b2c350eba904b68cd1444e50bbf7235ec96acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

from core import perf_benchmark

from measurements import image_decoding
import page_sets


class ImageDecodingToughImageCases(perf_benchmark.PerfBenchmark):
  test = image_decoding.ImageDecoding
  # TODO: Rename this page set to tough_image_cases.py
  page_set = page_sets.ImageDecodingMeasurementPageSet
  @classmethod
  def Name(cls):
    return 'image_decoding.image_decoding_measurement'