| 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 import os | 4 import os |
| 5 | 5 |
| 6 import screenshot_sync_expectations as expectations | 6 import screenshot_sync_expectations as expectations |
| 7 | 7 |
| 8 from telemetry import benchmark | 8 from telemetry import benchmark |
| 9 from telemetry.core import util | 9 from telemetry.core import util |
| 10 from telemetry.page import page | 10 from telemetry.page import page |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class ScreenshotSyncProcess(benchmark.Benchmark): | 46 class ScreenshotSyncProcess(benchmark.Benchmark): |
| 47 """Tests that screenhots are properly synchronized with the frame one which | 47 """Tests that screenhots are properly synchronized with the frame one which |
| 48 they were requested""" | 48 they were requested""" |
| 49 test = _ScreenshotSyncValidator | 49 test = _ScreenshotSyncValidator |
| 50 | 50 |
| 51 def CreateExpectations(self): | 51 def CreateExpectations(self): |
| 52 return expectations.ScreenshotSyncExpectations() | 52 return expectations.ScreenshotSyncExpectations() |
| 53 | 53 |
| 54 def CreatePageSet(self, options): | 54 def CreatePageSet(self, options): |
| 55 ps = page_set.PageSet(file_path=data_path, serving_dirs=['']) | 55 ps = page_set.PageSet(file_path=data_path, serving_dirs=['']) |
| 56 ps.AddPage(ScreenshotSyncPage(ps, ps.base_dir)) | 56 ps.AddUserStory(ScreenshotSyncPage(ps, ps.base_dir)) |
| 57 return ps | 57 return ps |
| OLD | NEW |