| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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.system_health import platforms | 5 from page_sets.system_health import platforms |
| 6 from page_sets.system_health import system_health_story | 6 from page_sets.system_health import system_health_story |
| 7 | 7 |
| 8 from page_sets.login_helpers import dropbox_login | 8 from page_sets.login_helpers import dropbox_login |
| 9 from page_sets.login_helpers import google_login | 9 from page_sets.login_helpers import google_login |
| 10 | 10 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 # Redirects to the "http://" version. | 115 # Redirects to the "http://" version. |
| 116 URL = 'https://www.bbc.co.uk/news/world-asia-china-36189636' | 116 URL = 'https://www.bbc.co.uk/news/world-asia-china-36189636' |
| 117 | 117 |
| 118 | 118 |
| 119 class LoadCnnStory(_LoadingStory): | 119 class LoadCnnStory(_LoadingStory): |
| 120 NAME = 'load:news:cnn' | 120 NAME = 'load:news:cnn' |
| 121 # Using "https://" shows "Your connection is not private". | 121 # Using "https://" shows "Your connection is not private". |
| 122 URL = 'http://edition.cnn.com' | 122 URL = 'http://edition.cnn.com' |
| 123 | 123 |
| 124 | 124 |
| 125 class LoadFacebookStory(_LoadingStory): | 125 class LoadFlipboardStory(_LoadingStory): |
| 126 NAME = 'load:news:flipboard' | 126 NAME = 'load:news:flipboard' |
| 127 URL = 'https://flipboard.com/explore' | 127 URL = 'https://flipboard.com/explore' |
| 128 | 128 |
| 129 | 129 |
| 130 class LoadHackerNewsStory(_LoadingStory): | 130 class LoadHackerNewsStory(_LoadingStory): |
| 131 NAME = 'load:news:hackernews' | 131 NAME = 'load:news:hackernews' |
| 132 URL = 'https://news.ycombinator.com' | 132 URL = 'https://news.ycombinator.com' |
| 133 | 133 |
| 134 | 134 |
| 135 class LoadNytimesDesktopStory(_LoadingStory): | 135 class LoadNytimesDesktopStory(_LoadingStory): |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 URL = 'http://www.miniclip.com/games/en/' | 369 URL = 'http://www.miniclip.com/games/en/' |
| 370 # Desktop only (requires Flash). | 370 # Desktop only (requires Flash). |
| 371 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY | 371 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY |
| 372 | 372 |
| 373 | 373 |
| 374 class LoadAlphabettyStory(_LoadingStory): | 374 class LoadAlphabettyStory(_LoadingStory): |
| 375 NAME = 'load:games:alphabetty' | 375 NAME = 'load:games:alphabetty' |
| 376 URL = 'https://king.com/play/alphabetty' | 376 URL = 'https://king.com/play/alphabetty' |
| 377 # Desktop only (requires Flash). | 377 # Desktop only (requires Flash). |
| 378 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY | 378 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY |
| OLD | NEW |