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.NavigateToPage(self) | 18 action_runner.NavigateToPage(self) |
19 action_runner.ExecuteJavaScript('runBenchmark();') | 19 action_runner.ExecuteJavaScript('runBenchmark();') |
20 action_runner.RunAction(WaitAction( | 20 action_runner.WaitForJavaScriptCondition('isDone') |
21 { | |
22 'javascript': 'isDone' | |
23 })) | |
24 | 21 |
25 | 22 |
26 class ImageDecodingMeasurementPageSet(page_set_module.PageSet): | 23 class ImageDecodingMeasurementPageSet(page_set_module.PageSet): |
27 | 24 |
28 """ A directed benchmark of image decoding performance """ | 25 """ A directed benchmark of image decoding performance """ |
29 | 26 |
30 def __init__(self): | 27 def __init__(self): |
31 super(ImageDecodingMeasurementPageSet, self).__init__() | 28 super(ImageDecodingMeasurementPageSet, self).__init__() |
32 self.image_decoding_measurement_limit_results_to_min_iterations = True | 29 self.image_decoding_measurement_limit_results_to_min_iterations = True |
33 | 30 |
34 urls_list = [ | 31 urls_list = [ |
35 'file://../../../chrome/test/data/image_decoding/image_decoding.html?gif', | 32 'file://../../../chrome/test/data/image_decoding/image_decoding.html?gif', |
36 'file://../../../chrome/test/data/image_decoding/image_decoding.html?jpg', | 33 'file://../../../chrome/test/data/image_decoding/image_decoding.html?jpg', |
37 'file://../../../chrome/test/data/image_decoding/image_decoding.html?png', | 34 'file://../../../chrome/test/data/image_decoding/image_decoding.html?png', |
38 'file://../../../chrome/test/data/image_decoding/image_decoding.html?webp' | 35 'file://../../../chrome/test/data/image_decoding/image_decoding.html?webp' |
39 ] | 36 ] |
40 | 37 |
41 for url in urls_list: | 38 for url in urls_list: |
42 self.AddPage(ImageDecodingMeasurementPage(url, self)) | 39 self.AddPage(ImageDecodingMeasurementPage(url, self)) |
OLD | NEW |