ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / tools / perf / page_sets / intl_hi_ru.py
bloba926ad323f26935441e4b24e70dee1dce3898115
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
3 # found in the LICENSE file.
4 from telemetry.page import page as page_module
5 from telemetry.page import page_set as page_set_module
8 class IntlHiRuPage(page_module.Page):
10 def __init__(self, url, page_set):
11 super(IntlHiRuPage, self).__init__(url=url, page_set=page_set)
12 self.user_agent_type = 'desktop'
13 self.archive_data_file = 'data/intl_hi_ru.json'
16 class IntlHiRuPageSet(page_set_module.PageSet):
18 """ Popular pages in Hindi and Russian. """
20 def __init__(self):
21 super(IntlHiRuPageSet, self).__init__(
22 user_agent_type='desktop',
23 archive_data_file='data/intl_hi_ru.json',
24 bucket=page_set_module.PARTNER_BUCKET)
26 urls_list = [
27 # Why: #12 site in Russia
28 'http://www.rambler.ru/',
29 'http://apeha.ru/',
30 # pylint: disable=C0301
31 'http://yandex.ru/yandsearch?lr=102567&text=%D0%9F%D0%BE%D0%B3%D0%BE%D0%B4%D0%B0',
32 'http://photofile.ru/',
33 'http://ru.wikipedia.org/',
34 'http://narod.yandex.ru/',
35 # Why: #15 in Russia
36 'http://rutracker.org/forum/index.php',
37 'http://hindi.webdunia.com/',
38 # Why: #49 site in India
39 'http://hindi.oneindia.in/',
40 # Why: #9 site in India
41 'http://www.indiatimes.com/',
42 # Why: #2 site in India
43 'http://news.google.co.in/nwshp?tab=in&hl=hi'
46 for url in urls_list:
47 self.AddUserStory(IntlHiRuPage(url, self))