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 telemetry.page import page |
5 from telemetry.page import page_set | 6 from telemetry.page import page_set |
6 from telemetry.page import page | |
7 | 7 |
8 | 8 |
9 TOP_2013_URLS = [ | 9 TOP_2013_URLS = [ |
10 'http://www.facebook.com/barackobama', | 10 'http://www.facebook.com/barackobama', |
11 'https://www.google.com/search?q=barack%20obama', | 11 'https://www.google.com/search?q=barack%20obama', |
12 'http://youtube.com', | 12 'http://youtube.com', |
13 'http://yahoo.com', | 13 'http://yahoo.com', |
14 'http://www.baidu.com/s?wd=barack+obama', | 14 'http://www.baidu.com/s?wd=barack+obama', |
15 'http://en.wikipedia.org/wiki/Wikipedia', | 15 'http://en.wikipedia.org/wiki/Wikipedia', |
16 'http://qq.com', | 16 'http://qq.com', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 """ Pages hand-picked from top-lists in Q32012. """ | 265 """ Pages hand-picked from top-lists in Q32012. """ |
266 | 266 |
267 def __init__(self): | 267 def __init__(self): |
268 super(Top2012Q3PageSet, self).__init__( | 268 super(Top2012Q3PageSet, self).__init__( |
269 archive_data_file='data/2012Q3.json', | 269 archive_data_file='data/2012Q3.json', |
270 bucket=page_set.PARTNER_BUCKET) | 270 bucket=page_set.PARTNER_BUCKET) |
271 | 271 |
272 | 272 |
273 for url in TOP_2013_URLS: | 273 for url in TOP_2013_URLS: |
274 self.AddUserStory(Top2012Q3Page(url, self)) | 274 self.AddUserStory(Top2012Q3Page(url, self)) |
OLD | NEW |