Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 from telemetry.page import legacy_page_test | |
| 6 | |
| 7 | |
| 8 class NoOp(legacy_page_test.LegacyPageTest): | |
| 9 | |
| 10 def __init__(self): | |
| 11 super(NoOp, self).__init__() | |
| 12 | |
| 13 def ValidateAndMeasurePage(self, page, tab, results): | |
| 14 pass | |
| OLD | NEW |