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 | 4 |
5 from page_sets import top_desktop_sites_2012Q3 | 5 from page_sets import top_desktop_sites_2012Q3 |
6 | 6 |
7 from telemetry.page import page_set | 7 from telemetry.page import page_set |
8 from telemetry.page import page | 8 from telemetry.page import page |
9 | 9 |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 class Top2012Q3StressPageSet(page_set.PageSet): | 26 class Top2012Q3StressPageSet(page_set.PageSet): |
27 """ Pages hand-picked from top-lists in Q32012. """ | 27 """ Pages hand-picked from top-lists in Q32012. """ |
28 | 28 |
29 def __init__(self): | 29 def __init__(self): |
30 super(Top2012Q3StressPageSet, self).__init__( | 30 super(Top2012Q3StressPageSet, self).__init__( |
31 make_javascript_deterministic=True, | 31 make_javascript_deterministic=True, |
32 archive_data_file='data/2012Q3.json', | 32 archive_data_file='data/2012Q3.json', |
33 bucket=page_set.PARTNER_BUCKET) | 33 bucket=page_set.PARTNER_BUCKET) |
34 | 34 |
35 for url in top_desktop_sites_2012Q3.TOP_2013_URLS: | 35 for url in top_desktop_sites_2012Q3.TOP_2013_URLS: |
36 self.AddPage(Top2012Q3StressPage(url, self)) | 36 self.AddUserStory(Top2012Q3StressPage(url, self)) |
OLD | NEW |