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): |
| 126 NAME = 'load:news:flipboard' |
| 127 URL = 'https://flipboard.com/explore' |
| 128 |
| 129 |
125 class LoadHackerNewsStory(_LoadingStory): | 130 class LoadHackerNewsStory(_LoadingStory): |
126 NAME = 'load:news:hackernews' | 131 NAME = 'load:news:hackernews' |
127 URL = 'https://news.ycombinator.com' | 132 URL = 'https://news.ycombinator.com' |
128 | 133 |
129 | 134 |
130 class LoadNytimesDesktopStory(_LoadingStory): | 135 class LoadNytimesDesktopStory(_LoadingStory): |
131 NAME = 'load:news:nytimes' | 136 NAME = 'load:news:nytimes' |
132 URL = 'http://www.nytimes.com' | 137 URL = 'http://www.nytimes.com' |
133 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY | 138 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY |
134 | 139 |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 URL = 'http://www.miniclip.com/games/en/' | 362 URL = 'http://www.miniclip.com/games/en/' |
358 # Desktop only (requires Flash). | 363 # Desktop only (requires Flash). |
359 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY | 364 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY |
360 | 365 |
361 | 366 |
362 class LoadAlphabettyStory(_LoadingStory): | 367 class LoadAlphabettyStory(_LoadingStory): |
363 NAME = 'load:games:alphabetty' | 368 NAME = 'load:games:alphabetty' |
364 URL = 'https://king.com/play/alphabetty' | 369 URL = 'https://king.com/play/alphabetty' |
365 # Desktop only (requires Flash). | 370 # Desktop only (requires Flash). |
366 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY | 371 SUPPORTED_PLATFORMS = platforms.DESKTOP_ONLY |
OLD | NEW |