| 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 # pylint: disable=W0401,W0614 | 4 # pylint: disable=W0401,W0614 |
| 5 from telemetry.page.actions.all_page_actions import * | 5 from telemetry.page.actions.all_page_actions import * |
| 6 from telemetry.page import page as page_module | 6 from telemetry.page import page as page_module |
| 7 from telemetry.page import page_set as page_set_module | 7 from telemetry.page import page_set as page_set_module |
| 8 | 8 |
| 9 | 9 |
| 10 class ImageDecodingMeasurementPage(page_module.Page): | 10 class ImageDecodingMeasurementPage(page_module.Page): |
| 11 | 11 |
| 12 def __init__(self, url, page_set): | 12 def __init__(self, url, page_set): |
| 13 super(ImageDecodingMeasurementPage, self).__init__(url=url, | 13 super(ImageDecodingMeasurementPage, self).__init__(url=url, |
| 14 page_set=page_set) | 14 page_set=page_set) |
| 15 self.image_decoding_measurement_limit_results_to_min_iterations = True | 15 self.image_decoding_measurement_limit_results_to_min_iterations = True |
| 16 | 16 |
| 17 def RunNavigateSteps(self, action_runner): | 17 def RunNavigateSteps(self, action_runner): |
| 18 action_runner.RunAction(NavigateAction()) | 18 action_runner.NavigateToPage(self) |
| 19 action_runner.RunAction(JavascriptAction( | 19 action_runner.RunAction(JavascriptAction( |
| 20 { | 20 { |
| 21 'expression': 'runBenchmark();' | 21 'expression': 'runBenchmark();' |
| 22 })) | 22 })) |
| 23 action_runner.RunAction(WaitAction( | 23 action_runner.RunAction(WaitAction( |
| 24 { | 24 { |
| 25 'javascript': 'isDone' | 25 'javascript': 'isDone' |
| 26 })) | 26 })) |
| 27 | 27 |
| 28 | 28 |
| 29 class ImageDecodingMeasurementPageSet(page_set_module.PageSet): | 29 class ImageDecodingMeasurementPageSet(page_set_module.PageSet): |
| 30 | 30 |
| 31 """ A directed benchmark of image decoding performance """ | 31 """ A directed benchmark of image decoding performance """ |
| 32 | 32 |
| 33 def __init__(self): | 33 def __init__(self): |
| 34 super(ImageDecodingMeasurementPageSet, self).__init__() | 34 super(ImageDecodingMeasurementPageSet, self).__init__() |
| 35 self.image_decoding_measurement_limit_results_to_min_iterations = True | 35 self.image_decoding_measurement_limit_results_to_min_iterations = True |
| 36 | 36 |
| 37 urls_list = [ | 37 urls_list = [ |
| 38 'file://../../../chrome/test/data/image_decoding/image_decoding.html?gif', | 38 'file://../../../chrome/test/data/image_decoding/image_decoding.html?gif', |
| 39 'file://../../../chrome/test/data/image_decoding/image_decoding.html?jpg', | 39 'file://../../../chrome/test/data/image_decoding/image_decoding.html?jpg', |
| 40 'file://../../../chrome/test/data/image_decoding/image_decoding.html?png', | 40 'file://../../../chrome/test/data/image_decoding/image_decoding.html?png', |
| 41 'file://../../../chrome/test/data/image_decoding/image_decoding.html?webp' | 41 'file://../../../chrome/test/data/image_decoding/image_decoding.html?webp' |
| 42 ] | 42 ] |
| 43 | 43 |
| 44 for url in urls_list: | 44 for url in urls_list: |
| 45 self.AddPage(ImageDecodingMeasurementPage(url, self)) | 45 self.AddPage(ImageDecodingMeasurementPage(url, self)) |
| OLD | NEW |