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 from telemetry.page import page_test | 5 from telemetry.page import legacy_page_test |
6 | 6 |
7 | 7 |
8 class NoOp(page_test.PageTest): | 8 class NoOp(legacy_page_test.LegacyPageTest): |
9 | 9 |
10 def __init__(self): | 10 def __init__(self): |
11 super(NoOp, self).__init__() | 11 super(NoOp, self).__init__() |
12 | 12 |
13 def ValidateAndMeasurePage(self, page, tab, results): | 13 def ValidateAndMeasurePage(self, page, tab, results): |
14 pass | 14 pass |
OLD | NEW |