| OLD | NEW |
| 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)) |
| OLD | NEW |