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