Change next_proto member type.
[chromium-blink-merge.git] / tools / perf / page_sets / tough_layer_cases.py
blob5aedde9eb36b1c4d689af0df26613317dda83fa5
1 # Copyright 2014 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 from telemetry.page import page as page_module
5 from telemetry.page import page_set as page_set_module
8 class ToughLayerCasesPage(page_module.Page):
10 def __init__(self, url, page_set):
11 super(ToughLayerCasesPage, self).__init__(url=url, page_set=page_set)
14 class ToughLayerCasesPageSet(page_set_module.PageSet):
16 """ A collection of tests to measure layer performance. """
18 def __init__(self):
19 super(ToughLayerCasesPageSet, self).__init__()
21 self.AddPage(ToughLayerCasesPage(
22 'file://layer_stress_tests/opacity.html', self))