Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: tools/perf/page_sets/tough_layer_cases.py

Issue 2933173002: Deleting unused story sets (Closed)
Patch Set: Deleting unused story sets Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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 import story
6
7
8 class ToughLayerCasesPage(page_module.Page):
9
10 def __init__(self, url, page_set):
11 super(ToughLayerCasesPage, self).__init__(url=url, page_set=page_set)
12
13
14 class ToughLayerCasesPageSet(story.StorySet):
15
16 """ A collection of tests to measure layer performance. """
17
18 def __init__(self):
19 super(ToughLayerCasesPageSet, self).__init__()
20
21 self.AddStory(ToughLayerCasesPage(
22 'file://layer_stress_tests/opacity.html', self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/top_desktop_sites_2012Q3.py ('k') | tools/perf/page_sets/typical_10_mobile.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698