| 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.page import page as page_module | 4 from telemetry.page import page as page_module |
| 5 from telemetry.page import shared_page_state | 5 from telemetry.page import shared_page_state |
| 6 from telemetry import story | 6 from telemetry import story |
| 7 | 7 |
| 8 from page_sets.login_helpers import google_login | 8 from page_sets.login_helpers import google_login |
| 9 from page_sets import top_pages | 9 from page_sets import top_pages |
| 10 | 10 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 # Why: #1 Alexa sports | 168 # Why: #1 Alexa sports |
| 169 'http://sports.yahoo.com/', | 169 'http://sports.yahoo.com/', |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 if techcrunch: | 172 if techcrunch: |
| 173 # Why: top tech blog | 173 # Why: top tech blog |
| 174 other_urls.append('http://techcrunch.com') | 174 other_urls.append('http://techcrunch.com') |
| 175 | 175 |
| 176 for url in other_urls: | 176 for url in other_urls: |
| 177 self.AddStory(TopSmoothPage(url, self)) | 177 self.AddStory(TopSmoothPage(url, self)) |
| 178 | |
| 179 | |
| 180 class V8Top25SmoothPageSet(Top25SmoothPageSet): | |
| 181 def __init__(self): | |
| 182 # Disabled for V8 because of crbug.com/507836, crbug.com/527425 | |
| 183 super(V8Top25SmoothPageSet, self).__init__(techcrunch=False) | |
| OLD | NEW |