| 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 import shutil | 5 import shutil |
| 6 | 6 |
| 7 from profile_creators import profile_generator | 7 from profile_creators import profile_generator |
| 8 from telemetry.page import page as page_module | 8 from telemetry.page import page as page_module |
| 9 from telemetry.page import cache_temperature as cache_temperature_module | 9 from telemetry.page import cache_temperature as cache_temperature_module |
| 10 from telemetry.page import shared_page_state | 10 from telemetry.page import shared_page_state |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 # Why: Alexa news #55 | 84 # Why: Alexa news #55 |
| 85 ('http://www.economist.com/news/science-and-technology/21573529-small-' | 85 ('http://www.economist.com/news/science-and-technology/21573529-small-' |
| 86 'models-cosmic-phenomena-are-shedding-light-real-thing-how-build'), | 86 'models-cosmic-phenomena-are-shedding-light-real-thing-how-build'), |
| 87 # Why: Alexa news #67 | 87 # Why: Alexa news #67 |
| 88 'http://www.theonion.com', | 88 'http://www.theonion.com', |
| 89 'http://arstechnica.com/', | 89 'http://arstechnica.com/', |
| 90 # Why: Alexa home #10 | 90 # Why: Alexa home #10 |
| 91 'http://allrecipes.com/Recipe/Pull-Apart-Hot-Cross-Buns/Detail.aspx', | 91 'http://allrecipes.com/Recipe/Pull-Apart-Hot-Cross-Buns/Detail.aspx', |
| 92 'http://www.html5rocks.com/en/', | 92 'http://www.html5rocks.com/en/', |
| 93 'http://www.mlb.com/', | 93 'http://www.mlb.com/', |
| 94 # pylint: disable=line-too-long | |
| 95 'http://gawker.com/5939683/based-on-a-true-story-is-a-rotten-lie-i-hope-yo
u-never-believe', | 94 'http://gawker.com/5939683/based-on-a-true-story-is-a-rotten-lie-i-hope-yo
u-never-believe', |
| 96 'http://www.imdb.com/title/tt0910970/', | 95 'http://www.imdb.com/title/tt0910970/', |
| 97 'http://www.flickr.com/search/?q=monkeys&f=hp', | 96 'http://www.flickr.com/search/?q=monkeys&f=hp', |
| 98 'http://money.cnn.com/', | 97 'http://money.cnn.com/', |
| 99 'http://www.nationalgeographic.com/', | 98 'http://www.nationalgeographic.com/', |
| 100 'http://premierleague.com', | 99 'http://premierleague.com', |
| 101 'http://www.osubeavers.com/', | 100 'http://www.osubeavers.com/', |
| 102 'http://walgreens.com', | 101 'http://walgreens.com', |
| 103 'http://colorado.edu', | 102 'http://colorado.edu', |
| 104 ('http://www.ticketmaster.com/JAY-Z-and-Justin-Timberlake-tickets/artist/' | 103 ('http://www.ticketmaster.com/JAY-Z-and-Justin-Timberlake-tickets/artist/' |
| 105 '1837448?brand=none&tm_link=tm_homeA_rc_name2'), | 104 '1837448?brand=none&tm_link=tm_homeA_rc_name2'), |
| 106 # pylint: disable=line-too-long | 105 # pylint: disable=line-too-long |
| 107 'http://www.theverge.com/2013/3/5/4061684/inside-ted-the-smartest-bubble-i
n-the-world', | 106 'http://www.theverge.com/2013/3/5/4061684/inside-ted-the-smartest-bubble-i
n-the-world', |
| 108 'http://www.airbnb.com/', | 107 'http://www.airbnb.com/', |
| 109 'http://www.ign.com/', | 108 'http://www.ign.com/', |
| 110 # Why: Alexa health #25 | 109 # Why: Alexa health #25 |
| 111 'http://www.fda.gov', | 110 'http://www.fda.gov', |
| 112 ] | 111 ] |
| 113 | 112 |
| 114 for url in urls_list: | 113 for url in urls_list: |
| 115 for temp in cache_temperatures: | 114 for temp in cache_temperatures: |
| 116 self.AddStory(page_class( | 115 self.AddStory(page_class( |
| 117 url, self, run_no_page_interactions, cache_temperature=temp)) | 116 url, self, run_no_page_interactions, cache_temperature=temp)) |
| OLD | NEW |