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

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

Issue 1198823004: Update perf page_set to use story_set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « tools/perf/page_sets/tough_filters_cases.py ('k') | tools/perf/page_sets/tough_layer_cases.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 from telemetry import story
5 from telemetry.page import page as page_module
4 from telemetry.page import shared_page_state 6 from telemetry.page import shared_page_state
5 from telemetry.page import page as page_module
6 from telemetry.page import page_set as page_set_module
7 7
8 8
9 class ToughImageCasesPage(page_module.Page): 9 class ToughImageCasesPage(page_module.Page):
10 10
11 def __init__(self, url, page_set): 11 def __init__(self, url, page_set):
12 super(ToughImageCasesPage, self).__init__( 12 super(ToughImageCasesPage, self).__init__(
13 url=url, page_set=page_set, 13 url=url, page_set=page_set,
14 shared_page_state_class=shared_page_state.SharedDesktopPageState) 14 shared_page_state_class=shared_page_state.SharedDesktopPageState)
15 15
16 16
17 class ToughImageCasesPageSet(page_set_module.PageSet): 17 class ToughImageCasesPageSet(story.StorySet):
18 18
19 """ A collection of image-heavy sites. """ 19 """ A collection of image-heavy sites. """
20 20
21 def __init__(self): 21 def __init__(self):
22 super(ToughImageCasesPageSet, self).__init__() 22 super(ToughImageCasesPageSet, self).__init__()
23 23
24 urls_list = [ 24 urls_list = [
25 'http://www.free-pictures-photos.com/aviation/airplane-306.jpg', 25 'http://www.free-pictures-photos.com/aviation/airplane-306.jpg',
26 ('http://upload.wikimedia.org/wikipedia/commons/c/cb/' 26 ('http://upload.wikimedia.org/wikipedia/commons/c/cb/'
27 'General_history%2C_Alaska_Yukon_Pacific_Exposition%' 27 'General_history%2C_Alaska_Yukon_Pacific_Exposition%'
28 '2C_fully_illustrated_-_meet_me_in_Seattle_1909_-_Page_78.jpg') 28 '2C_fully_illustrated_-_meet_me_in_Seattle_1909_-_Page_78.jpg')
29 ] 29 ]
30 30
31 for url in urls_list: 31 for url in urls_list:
32 self.AddUserStory(ToughImageCasesPage(url, self)) 32 self.AddUserStory(ToughImageCasesPage(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/tough_filters_cases.py ('k') | tools/perf/page_sets/tough_layer_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698