| 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 from page_sets import page_cycler_story | 5 from page_sets import page_cycler_story |
| 6 from telemetry import story | 6 from telemetry import story |
| 7 from telemetry.page import cache_temperature as cache_temperature_module | 7 from telemetry.page import cache_temperature as cache_temperature_module |
| 8 from telemetry.page import shared_page_state | 8 from telemetry.page import shared_page_state |
| 9 | 9 |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 cache_temperatures = [cache_temperature_module.ANY] | 29 cache_temperatures = [cache_temperature_module.ANY] |
| 30 | 30 |
| 31 urls_list = [ | 31 urls_list = [ |
| 32 # Why: #7 site in Vietnam | 32 # Why: #7 site in Vietnam |
| 33 'http://us.24h.com.vn/', | 33 'http://us.24h.com.vn/', |
| 34 # Why: #6 site in Vietnam | 34 # Why: #6 site in Vietnam |
| 35 'http://vnexpress.net/', | 35 'http://vnexpress.net/', |
| 36 # Why: #18 site in Vietnam | 36 # Why: #18 site in Vietnam |
| 37 'http://vietnamnet.vn/', | 37 'http://vietnamnet.vn/', |
| 38 # Why: #5 site in Vietnam | 38 # Why: #5 site in Vietnam |
| 39 # Disabled, see crbug.com/682351. |
| 39 # pylint: disable=line-too-long | 40 # pylint: disable=line-too-long |
| 40 'http://news.zing.vn/the-gioi/ba-dam-thep-margaret-thatcher-qua-doi/a31289
5.html#home_noibat1', | 41 #'http://news.zing.vn/the-gioi/ba-dam-thep-margaret-thatcher-qua-doi/a3128
95.html#home_noibat1', |
| 41 'http://kenh14.vn/home.chn', | 42 'http://kenh14.vn/home.chn', |
| 42 # Why: #5 site in Korea | 43 # Why: #5 site in Korea |
| 43 'http://www.naver.com/', | 44 'http://www.naver.com/', |
| 44 # Why: #9 site in Korea | 45 # Why: #9 site in Korea |
| 45 'http://www.daum.net/', | 46 'http://www.daum.net/', |
| 46 # Why: #25 site in Korea | 47 # Why: #25 site in Korea |
| 47 'http://www.donga.com/', | 48 'http://www.donga.com/', |
| 48 'http://www.chosun.com/', | 49 'http://www.chosun.com/', |
| 49 'http://www.danawa.com/', | 50 'http://www.danawa.com/', |
| 50 # Why: #10 site in Thailand | 51 # Why: #10 site in Thailand |
| 51 'http://pantip.com/', | 52 'http://pantip.com/', |
| 52 'http://thaimisc.com/' | 53 'http://thaimisc.com/' |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 for url in urls_list: | 56 for url in urls_list: |
| 56 for temp in cache_temperatures: | 57 for temp in cache_temperatures: |
| 57 self.AddStory(IntlKoThViPage(url, self, cache_temperature=temp)) | 58 self.AddStory(IntlKoThViPage(url, self, cache_temperature=temp)) |
| OLD | NEW |