| Index: tools/perf/benchmarks/page_cycler.py
 | 
| diff --git a/tools/perf/benchmarks/page_cycler.py b/tools/perf/benchmarks/page_cycler.py
 | 
| index f7cc955a59a7cc7fd2b524542bb71a2d799fbfe6..fb9c5c18624f12b3f57853b34e254d6984b6a0e0 100644
 | 
| --- a/tools/perf/benchmarks/page_cycler.py
 | 
| +++ b/tools/perf/benchmarks/page_cycler.py
 | 
| @@ -35,31 +35,6 @@ class _PageCycler(perf_benchmark.PerfBenchmark):
 | 
|          report_speed_index=options.report_speed_index)
 | 
|  
 | 
|  
 | 
| -class PageCyclerIntlArFaHe(_PageCycler):
 | 
| -  """Page load time for a variety of pages in Arabic, Farsi and Hebrew.
 | 
| -
 | 
| -  Runs against pages recorded in April, 2013.
 | 
| -  """
 | 
| -  page_set = page_sets.IntlArFaHePageSet
 | 
| -
 | 
| -  @classmethod
 | 
| -  def Name(cls):
 | 
| -    return 'page_cycler.intl_ar_fa_he'
 | 
| -
 | 
| -
 | 
| -@benchmark.Disabled('win')  # crbug.com/366715
 | 
| -class PageCyclerIntlEsFrPtBr(_PageCycler):
 | 
| -  """Page load time for a pages in Spanish, French and Brazilian Portuguese.
 | 
| -
 | 
| -  Runs against pages recorded in April, 2013.
 | 
| -  """
 | 
| -  page_set = page_sets.IntlEsFrPtBrPageSet
 | 
| -
 | 
| -  @classmethod
 | 
| -  def Name(cls):
 | 
| -    return 'page_cycler.intl_es_fr_pt-BR'
 | 
| -
 | 
| -
 | 
|  class PageCyclerIntlHiRu(_PageCycler):
 | 
|    """Page load time benchmark for a variety of pages in Hindi and Russian.
 | 
|  
 | 
| @@ -72,29 +47,6 @@ class PageCyclerIntlHiRu(_PageCycler):
 | 
|      return 'page_cycler.intl_hi_ru'
 | 
|  
 | 
|  
 | 
| -@benchmark.Disabled('android', 'win')  # crbug.com/379564, crbug.com/434366
 | 
| -class PageCyclerIntlJaZh(_PageCycler):
 | 
| -  """Page load time benchmark for a variety of pages in Japanese and Chinese.
 | 
| -
 | 
| -  Runs against pages recorded in April, 2013.
 | 
| -  """
 | 
| -  page_set = page_sets.IntlJaZhPageSet
 | 
| -
 | 
| -  @classmethod
 | 
| -  def Name(cls):
 | 
| -    return 'page_cycler.intl_ja_zh'
 | 
| -
 | 
| -  @classmethod
 | 
| -  def ValueCanBeAddedPredicate(cls, value, is_first_result):
 | 
| -    # Filter out vm_private_dirty_final_renderer
 | 
| -    # crbug.com/551522
 | 
| -    print '**** %s ***' % value.name
 | 
| -    filtered_name = (
 | 
| -        'vm_private_dirty_final_renderer.vm_private_dirty_final_renderer')
 | 
| -    return (super(PageCyclerIntlJaZh, cls).ValueCanBeAddedPredicate(
 | 
| -        value, is_first_result) and value.name != filtered_name)
 | 
| -
 | 
| -
 | 
|  class PageCyclerIntlKoThVi(_PageCycler):
 | 
|    """Page load time for a variety of pages in Korean, Thai and Vietnamese.
 | 
|  
 | 
| 
 |