| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 import os | 5 import os |
| 6 | 6 |
| 7 from core import perf_benchmark | 7 from core import perf_benchmark |
| 8 | 8 |
| 9 from telemetry import benchmark | 9 from telemetry import benchmark |
| 10 from telemetry.core import util | 10 from telemetry.core import util |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 @classmethod | 131 @classmethod |
| 132 def Name(cls): | 132 def Name(cls): |
| 133 return 'blink_perf.animation' | 133 return 'blink_perf.animation' |
| 134 | 134 |
| 135 def CreatePageSet(self, options): | 135 def CreatePageSet(self, options): |
| 136 path = os.path.join(BLINK_PERF_BASE_DIR, 'Animation') | 136 path = os.path.join(BLINK_PERF_BASE_DIR, 'Animation') |
| 137 return CreatePageSetFromPath(path, SKIPPED_FILE) | 137 return CreatePageSetFromPath(path, SKIPPED_FILE) |
| 138 | 138 |
| 139 | 139 |
| 140 @benchmark.Disabled # http://crbug.com/500958 |
| 140 class BlinkPerfBindings(perf_benchmark.PerfBenchmark): | 141 class BlinkPerfBindings(perf_benchmark.PerfBenchmark): |
| 141 tag = 'bindings' | 142 tag = 'bindings' |
| 142 test = _BlinkPerfMeasurement | 143 test = _BlinkPerfMeasurement |
| 143 | 144 |
| 144 @classmethod | 145 @classmethod |
| 145 def Name(cls): | 146 def Name(cls): |
| 146 return 'blink_perf.bindings' | 147 return 'blink_perf.bindings' |
| 147 | 148 |
| 148 def CreatePageSet(self, options): | 149 def CreatePageSet(self, options): |
| 149 path = os.path.join(BLINK_PERF_BASE_DIR, 'Bindings') | 150 path = os.path.join(BLINK_PERF_BASE_DIR, 'Bindings') |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 tag = 'xml_http_request' | 316 tag = 'xml_http_request' |
| 316 test = _BlinkPerfMeasurement | 317 test = _BlinkPerfMeasurement |
| 317 | 318 |
| 318 @classmethod | 319 @classmethod |
| 319 def Name(cls): | 320 def Name(cls): |
| 320 return 'blink_perf.xml_http_request' | 321 return 'blink_perf.xml_http_request' |
| 321 | 322 |
| 322 def CreatePageSet(self, options): | 323 def CreatePageSet(self, options): |
| 323 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest') | 324 path = os.path.join(BLINK_PERF_BASE_DIR, 'XMLHttpRequest') |
| 324 return CreatePageSetFromPath(path, SKIPPED_FILE) | 325 return CreatePageSetFromPath(path, SKIPPED_FILE) |
| OLD | NEW |